Date Not Saving in Mysql from Php Registration Form

前端 未结 4 1368
别跟我提以往
别跟我提以往 2021-01-29 08:46

I am having trouble saving the date of birth in Mysql Db from Php registration form, what am I doing wrong?

  1. Check.php

    $month = $_POST[\'month\'];
4条回答
  •  粉色の甜心
    2021-01-29 09:06

    Mysql query should be format like

    mysql_query("INSERT INTO users(FirstName,LastName,Phone,DOB)VALUES ( '".$FirstName."','". $LastName . "','" . $Phone . "','" . $Year . "-" . $Month + "-" . $Day . '")");
    

提交回复
热议问题