Jump to content

inserting into DB


harkly

Recommended Posts

I want to be able to calculate the ages of my users. I thought that if I inserted the bd into the database as yyyy-mm-dd it would be easier to do this. However, my form gets the year, month and day separetly. I thought that combining them and inserted into db would be a good idea. I am able to get them to combine but not insert into the db. can some help me??

            $bd_day=$_POST["bd_day"];
            $bd_month=$_POST["bd_month"];
            $bd_year=$_POST["bd_year"];
            $birth_date= $bd_year."-".$bd_month."-".$bd_day;

 

            $sql = "INSERT INTO user 
                (bd_day, bd_month, bd_year, birth_date)
              VALUES
	('$_POST[bd_day]','$_POST[bd_month]','$_POST[bd_year]','$_POST[birth_date]',NOW())";

 

Makes sense to me that this would work but I have never tried inserting like this before and am pretty new

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.