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
https://forums.phpfreaks.com/topic/188822-inserting-into-db/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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