-1

我已经开始学习 PHP,只是不知道如何实现这一点。基本问题是如何从当年计算年龄..

我必须使用提交按钮来完成,这就是我的问题。我试过这个:

<form name="form2" action="16.1.php" method="POST">
Birthday year:
<input type="post" name="post">
<input type="submit" value= "Verstuur" >
</form>

16.1php:

<?php
echo date ('Y') - $_POST['post'];
?>
4

2 回答 2

0

尝试这个

如果($_POST['提交'])

{
$byear = $_POST['bdate']; 
$today = new DateTime();
$birthdate = new DateTime($byear);
$interval = $today->diff($birthdate);
echo $interval->format('%y years');
}

<form name="form2" action="" method="POST">
Birthday year:
<input type="text" name="bdate">(yyy-mm-dd)
<input type="submit" name="submit" value= "Verstuur" >
</form>

于 2013-09-26T10:47:10.957 回答
0

试试更新这个。。

<input type="input" name="post">

type = "post"type = "input"

于 2013-09-26T10:28:27.520 回答