我需要解决这个问题: 1)我在我的项目中有两个日期输入 2)我需要注册(第一次约会)的日期不得超过锦标赛的日期(第二次约会)。
<div class="form-group">
<label for="date"><?php echo $lang['date_tournament']; ?></label>
<input type="text" class="form-control datepicker" name="date_tournament" required>
答案 0 :(得分:0)
<?php $first = strtotime($registrationdate);
$second = strtotime($tournamentdate);
$datediff = $first - $second;
if(floor($datediff / (60 * 60 * 24))<2){
echo 'valid';
} ?>