I get this error:
Parse error: parse error, unexpected '{' in /home/joel/public_html/portfolio/8/admin/edit_store.php on line 38
This is the page...it starts at line 30 and ends at 44.
// Rename global variables
$name = $_POST[name];
$link = $_POST[link];
$specials = $_POST[specials];
$show = $_POST[show];
$zip = $_POST[zip];
$address = $_POST[address];
$sql = "UPDATE `{$tbl_prefix}shrimp_stores` SET ";
$sql .= "`name` = '".$name."', `link` = '".$link."', `specials` = '".$specials."', `show` = '".$show."' ";
$sql .= "`zip` = '".$zip."', `address` = '".$address."' ";
$sql .= "WHERE `id` = '".$id."' LIMIT 1";
mysql_query($sql) or die(mysql_error());
echo "Updated shrimp store succesfully.";
What did I do wrong?