Hi, if I were to create a script where i wanted to see if a query would return true or false, COULD i use something like
$result = mysql_query("SELECT * FROM table1");
if ($result==true) {
//Display an alert saying that the query succeded
} else {
//Display an alert saying the query failed
}
i've been looking around to see if i could find any scripts that would use something like this but i haven't found anything so i would appreciate some help. 🙂 thx