Hi have this code
mysql_query( $query, $link )
or die ( "INSERT error: ".mysql_error() );
And I want to know when it's not inserted...in other words, I want to make a variable with this
or die ( "INSERT error: ".mysql_error()
to put after in a condition
How can I do it?
thanks