Home › Forums › Back End › Nice Profile URL? › Re: Nice Profile URL?
February 2, 2012 at 9:11 am
#95997
Member
Something else must be wrong in the query though, that error means the query is failing
I would put an echo line in after the query to see exactly what the query that php is running is. You can then run that query manually and have sql tell you what’s wring with it.
$sql=’SELECT from blah blah’;
echo $sql;
$result = mysql_query($sql);