Hi, i am getting this error with the following code:
$query = "SELECT title, firstname, surname, address1, address2, address3, postcode,"
."tel, mobile, email"
."FROM user"
."WHERE username='$valid_user'";
us.skill_id=s.skill_id"
$result=mysql_query($query);
$num_rows=mysql_num_rows($result);
$row=mysql_fetch_array($result);
The error is referring ot the last 2 lines of this script but I have absolutely no idea y... can anyone help me?
Cheers,
Andy.
$query = "SELECT title, firstname, surname, address1, address2, address3, postcode,"
."tel, mobile, email"
."FROM user"
."WHERE username='$valid_user'";
us.skill_id=s.skill_id"
$result=mysql_query($query);
$num_rows=mysql_num_rows($result);
$row=mysql_fetch_array($result);
The error is referring ot the last 2 lines of this script but I have absolutely no idea y... can anyone help me?
Cheers,
Andy.
Comment