Jump to content

Simple truth check


HuggieBear

Recommended Posts

Guys,

Just a quick one...  If I insert a row into my database using mysql_query() it returns TRUE if successful and FALSE if not.  I'm assigning this value to $insert...

[code=php:0]$insert = mysql_query($sql) or die ("Couldn't execute $sql: " . mysql_error());
[/code]

Now how do I check if $insert is true?  Do I just need to include it in my if statement like so...

[code=php:0]if ($insert){ // my code...;}
[/code]

I figured that even if $insert was FALSE, the fact that it's defined would still make the above statement true, is that correct?

Regards
Hungover Huggie
Link to comment
https://forums.phpfreaks.com/topic/22653-simple-truth-check/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.