ユーザーが自分のサイトに登録しようとすると、十分古いものであることを確認する必要があります。私はgetdate()
関数を使ってこれをしようとしています。getdate()を使用してユーザーの年齢を確認するにはどうすればよいですか?
私はgetdate()
のことを理解していますが、この目的で正しく使用する方法を理解するのは苦労しています。
<?php
$fn = $_POST["fullname"];
$un = $_POST["username"];
$pw = $_POST["password"];
$dob = $_POST["dayofbirth"];
$mob = $_POST["monthofbirth"];
$yob = $_POST["yearofbirth"];
$date = getdate();
if ($yob =$yob>= $date["year"]-16)
{
echo "Too young to register!";
}
elseif ($yob <=1899)
{
echo "Don't be silly, you are not that old!";
}
else
{
echo "<h1>Thank you for registering with us!</h1>";
echo "<p> You have successfully registered with these details:
<br>Your full name :$fn<br> Username: $un
<br>Date of birth: $dob $mob $yob</p>";
}
?>
曜日\をチェックしない限り、これは正確ではありません –