Jump to content

error


ohdang888

Recommended Posts

NEVERMIND-- SOLVED

 

 

the error i am getting is this:

 

Parse error: syntax error, unexpected $end in C:\xampp\htdocs\change_settings.php on line 29

 

<?php include("include/topmenu.php");

function sql_quote($data) {
  if (get_magic_quotes_gpc()) {
  $data = stripslashes($data);
  }

return addslashes($data);
}

$id = sql_quote($_GET['id']);

if (isset($_POST['submit'])) {

mysql_connect("localhost", "*****", "****") or die(mysql_error());
mysql_select_db("members") or die(mysql_error());
$new_age_race = $_POST["age_race"];
$new_contact = $_POST["contact"];
$new_name = $_POST["name"];
$new_non_member = $_POST["non_member"];

$query = "UPDATE `user_settings SET `name` = '{$new_name}' SET `contact` = '{$new_contact}' SET `age_race` = '{$new_age_race}' SET  `non_member` = '{$new_non_member}' WHERE id = '{$id}'";
mysql_query($query);
echo 'done';
?>
<br>
<br>
<?php include ("include/footer.php");?>    THIS IS LINE 28, THERE IS NO LINE 29

Link to comment
https://forums.phpfreaks.com/topic/93880-error/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.