cs1h Posted October 23, 2007 Share Posted October 23, 2007 Hi, I have a script to edit a row on my database but its not working. I get the following error, Parse error: syntax error, unexpected T_VARIABLE in D:\Inetpub\vhost\myroho.com\httpdocs\admin\coneditmem.php on line 20 The script is, <?php include "cat.php"; $email=$_POST['Email']; $name=$_POST['name']; $origin=$_POST['origin']; $abc=$_POST['hiddenField']; $horde=$_POST['horde']; $birth=$_POST['birth']; mysql_connect($server, $db_user, $db_pass) or die (mysql_error()); mysql_select_db("$database") or die(mysql_error()) $sql = ("UPDATE ac_users SET username='$email', name1='$name', origin='$origin', horde='$horde', email='$birth' WHERE id = '$abc'"); if (mysql_query($sql)) { echo "Changes made to $title.<br /> <a href='arteditor.php'>Click here</a> to return to the admin home."; } else { echo mysql_error() . "<br />$sql"; } ?> Can anyone help? Thanks, Colin Quote Link to comment https://forums.phpfreaks.com/topic/74498-solved-help-finding-t_variable/ Share on other sites More sharing options...
only one Posted October 23, 2007 Share Posted October 23, 2007 mysql_select_db("$database") or die(mysql_error()).. You forgot the ; at the end. mysql_select_db("$database") or die(mysql_error()); Quote Link to comment https://forums.phpfreaks.com/topic/74498-solved-help-finding-t_variable/#findComment-376484 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.