Jump to content

[SOLVED] Help finding T_VARIABLE


cs1h

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/74498-solved-help-finding-t_variable/
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.