Hi all
$query = "SELECT username, email, from customers where username = '$uname'";
$result = @($query);
$row = mysql_fetch_array($result,MYSQL_NUM);
I am receiving the following error with the above code any one have any ideas
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource
echoed $query and the string is well formed.
any help appreciated
Mike