我有一个带有动态选择选项的表单。我想从数据库中选择一只山羊,从出生日期开始计算几个月的年龄,并在动态选择选项后面的下一个表格字段中回显选定的山羊年龄。 这是选择脚本:
<?php
$conn = mysqli_connect("localhost", "root", "xxx", "xxxx");
if(mysqli_connect_errno($conn)) {
echo "Unable to connect to database server";
}
$sql = "SELECT * FROM goats WHERE sex='Male'";
$query = mysqli_query($conn, $sql);
echo '<select name="hegoat">';
echo '<option value="">Choose He Goat</option>';
while($hegoats = mysqli_fetch_assoc($query)){
echo "<option>{$hegoats['goatid']}</option>";
}
echo '</select>';
?>
数据库表是山羊与&#39; dob&#39;作为出生日期的列
而年龄的表单字段为:<input type="text" name="age" id="age"/>
我的PHP代码是
<?php
if(isset($_POST['sub']))
{
date_default_timezone_set ("Asia/Calcutta");
$dateofreg1=date("d M Y");
$dbd=$_POST['dob'];
$startTimeStamp = strtotime($dbd);
$endTimeStamp = strtotime($dateofreg1);
$timeDiff = abs($endTimeStamp - $startTimeStamp);
$numberDays = $timeDiff/86400;
$numberDays = intval($numberDays);
$days="Total day :".$numberDays;
$birthDate =$dbd;
$birthDate = explode("/", $birthDate);
$age = (date("md", date("U", mktime(0, 0, 0, $birthDate[0], $birthDate[1], $birthDate[2]))) > date("md") ? ((date("Y") - $birthDate[2]) - 1) : (date("Y") - $birthDate[2]));
$dobs="Age is:" . $age;
}
?>
答案 0 :(得分:1)
根据你上次的评论,我给出了这个答案。
<?php if(isset($_POST['sub']))
{
date_default_timezone_set ("Asia/Calcutta");
$dateofreg1=date("d M Y");
$dbd=$_POST['dob'];
$startTimeStamp = strtotime($dbd);
$endTimeStamp = strtotime($dateofreg1);
$year1 = date('Y', $startTimeStamp); //select year1
$year2 = date('Y', $endTimeStamp); //select year 2
$month1 = date('m', $startTimeStamp); //month1
$month2 = date('m', $endTimeStamp); //month2
$diff = (($year2 - $year1) * 12) + ($month2 - $month1); //year*12 and month difference
$dobs="Age is:" . $diff. " months";
?>
答案 1 :(得分:-1)
简单的一行代码,用于计算天数。
using