I want to insert a ‘null’ value into my database in certain situations but I’m not having much luck. When I try to use something like
Code: Select all
if(empty($_POST['sheet'])) { $bf = "NULL" ; }Can anyone point me to what I need to do?
Thanks
Moderator: General Moderators
Code: Select all
if(empty($_POST['sheet'])) { $bf = "NULL" ; }