Hi Can someone tell me how i can insert a null value in a mysql field using php
the code might resemble thus:
$sql="insert into mytable(columnname) values(what to put here?) where column1 = '$var'";
Thanks
insert into table (field) values (NULL);