Jump to content

[SOLVED] Inserting a null value into mysql database


fatrandy13

Recommended Posts

i have a form that submits data to a php result page.  i then insert that data into a mysql database.  Null values ARE allowed and the problem is when i try to insert a null number value, it errors.

 

$ticket_number = $_POST['ticket_number'];
$another_number = $_POST['another_number'];

$query = "INSERT INTO ticket (ticket_number, another_number) values ($ticket_number, $another_number);
mysql_query($query) or die(mysql_error());

 

ticket number is required, but another_number is not.

error: youg have an error in your sql syntax; check the manual that corresponds to your mysql server version for the right syntax to use near ')' at line 1

 

the ')' refers to the end of the close parenthasis in the sql statement.  the thing is, in mysql i could have just done:

 

insert into ticket (ticket_number, another_number) values (1, NULL);

 

how do i replicate that in a php statement.  the same thing happens with a null date type too.  There has to be a way!

 

thanks in advance.

-fatrandy13

Link to comment
Share on other sites

if its a number thats being inserted, single quotes are not nessescary, i  did however put quotes and received this error:

 

Out of range value adjusted from column 'another_number' at row 1.

 

this error is because php is sending NULL and since i am now putting quotes around it, mysql is getting 'null' as a string.  i tested this by inserting it into a varchar() datatype, and i in fact got the string 'null' inserted into the database.  i need to actuall send a null value, not the string null and not a ' '.  Anyone else?

Link to comment
Share on other sites

See if this gives you what you want.

 

<?php

$ticket_number = $_POST['ticket_number'];

if (!empty($_POST['another_number']))
   $another_number = $_POST['another_number'];
else
   $another_number = NULL;

$query = "INSERT INTO ticket (ticket_number, another_number) values ('$ticket_number', '$another_number')";
mysql_query($query) or die(mysql_error());

?>

Link to comment
Share on other sites

i run across the same issue as before, since php is returning NULL, and i am wrapping single quotes around it in the query, mysql actually get the string 'null'.  i tested this with both a integer datatype, in which case i get a type mismatch, and also with a varchar() datatype, in which the string 'null' gets inserted, in neither case an actual NULL value.

Link to comment
Share on other sites

just got it, thanks everyone for your help... i've been playing with this for a couple days now, this worked though:

 

if (!empty($_POST['another_number']))
   $another_number = $_POST['another_number'];
else
   $another_number = mysql_escape_string("NULL") ;

$query = "INSERT INTO ticket (ticket_number, another_number) values ('$ticket_number', $another_number)";

 

thanks everyone, this inserted NULL into my integer datatype in mysql, exactly what i wanted... again thanks

no quotes around $another_number though ...  ;)

 

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.