Jump to content

Can't insert a value to a date field


proud

Recommended Posts

I have a table called time with 2 fields: id(Int), and date(Date)..

 

Now when I use this query to insert the following date value to the table:

 

<?php

include( 'conn.php' );


$borrow_date = date("d-m-Y");  // current date

echo $borrow_date;  

$sql= mysql_query("insert into time (id,date) values('','$borrow_date')") or die (mysql_error());

?>

 

 

The new value of id is (1), but the new value of date is (0000-00-00), when it is supposed to be (02-02-2010)..

 

Does any one know why?

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.