philip381 Posted June 30, 2012 Share Posted June 30, 2012 I am using PHP version 5.3.2 on Windows 7. I have a question pertaining to brackets. (), [], {}. On page 385, the edit_entry.php script, line 51 // Define the query. $query = "UPDATE entries SET title='$title', entry='$entry' WHERE entry_id={$_POST['id']}"; Why is $_POST['id'] encased in squiggly brackets? Elsewhere, line 41 and 42, for example, the $_POST['title'] is encased in simple (). Does the fact that the variable is being passed through the URL have anything to do with it? Or the fact that the entire SQL statement is enclosed in double quotes, thus requiring the "extra strength" squiggly line encasement? Thank you in advance for your answer. Link to comment Share on other sites More sharing options...
Antonio Conte Posted June 30, 2012 Share Posted June 30, 2012 There's a big different if it's a String or an expression. You don't use squiggly brackets in an expression, but they are sometimes required with Strings. (Like when creating this SQL query String). Also note that Use your IDE to figure it how it works Personally, I would prefer to write the string like below, but that's just personal taste. $query = 'UPDATE entries SET title="'.$title.'", entry="'.$entry.'" WHERE entry_id='.$_POST['id'].'; Link to comment Share on other sites More sharing options...
Recommended Posts