Hello,
what is the solution for checking whether mysql_query was successful or not? For example, when I $result=mysql_query( "CREATE TABLE....." ); and afterwards do if ( $result ) { // was successful }:
Will this code in the if-condition repeat the query or just check if the variable is not empty? What about this: if ( !$result ) { // not successful }
thx





... because, the query will FAIL only when the query is incorrect 
Bookmarks