date - insert into - from input type =“date”

时间:2013-10-20 13:19:29

标签: php date insert-into

我输入了“日期”.. 我想插入这样的日期:dd / mm / yyy不喜欢这样:yyy / md / dd 我能做到谁?

我的代码:

HTML:

<label for="date">birthdate:&nbsp;</label>
<input type="date" name="date" /><br />

PHP:

$_POST['date'] = stripslashes($_POST['date']);
$date = mysql_real_escape_string($_POST['date']);
if(mysql_query('insert into users(id, username, password, email, avatar, date, signup_date) values ('.$id.', "'.$username.'", "'.$password.'", "'.$email.'", "'.$avatar.'", "'.$date.'", "'.time().'")'))

和... 别的东西 谁可以将日期转换为年龄?

1 个答案:

答案 0 :(得分:0)

if声明

之前添加此行
$date = date("d-m-Y", strtotime($date));