Jump to content

Mysql and NULL values


leony

Recommended Posts

Hello,

 

I have an HTML form and it collects customer address, tel no, post code etc...However all these fields are not required as in the following:

 

<select name="contact">
                <option value="0" selected="selected">Select</option>
                <option value="1">Yes</option>
                <option value="2">No</option>
              </select>

 

If the customer does not select anything, I want to insert a NULL value to the database, because, I cannot get it right, instead of NULL value, I have to use a ZERO (0) value.

 

INSERT INTO table (first_name, last_name, house_no, street, city, county, postcode, email, phone, contact insert_date) VALUES ('$first_name', '$last_name', '$house_name', '$street', '$city', '$county', '$postcode', '$email', '$telephone', $contact, NOW())";

 

There are lots of 0s in the database and somehow I want to insert NULL value instead of zero. How can it be done?

 

Thanks...

 

Link to comment
Share on other sites

if(empty($contact))
  $contact = 'NULL';

  $sql = "INSERT INTO table (first_name, last_name, house_no, street, city, county, postcode, email, phone, contact insert_date) VALUES ('$first_name', '$last_name', '$house_name', '$street', '$city', '$county', '$postcode', '$email', '$telephone', $contact, NOW())";

 

Link to comment
Share on other sites

if(empty($contact))
  $contact = 'NULL';

  $sql = "INSERT INTO table (first_name, last_name, house_no, street, city, county, postcode, email, phone, contact insert_date) VALUES ('$first_name', '$last_name', '$house_name', '$street', '$city', '$county', '$postcode', '$email', '$telephone', $contact, NOW())";

 

 

Hi,

 

For your sample code, I have noticed that as long as the contact value is NULL, the query is executed , however if it is not, I get an error message.

 

The column is NULL meanwhile.

 

Thanks...

Link to comment
Share on other sites

is $contact a number? try this instead:

$contact = empty($contact) ? 'NULL' : "'".mysql_real_escape_string($contact)."'";

  $sql = "INSERT INTO table (first_name, last_name, house_no, street, city, county, postcode, email, phone, contact insert_date) VALUES ('$first_name', '$last_name', '$house_name', '$street', '$city', '$county', '$postcode', '$email', '$telephone', $contact, NOW())";

 

edit: and if that doesn't work...when the query fails what is the error outputted by mysql_error() ?

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.