在php中显示特定时间间隔的表单

时间:2016-08-18 16:13:37

标签: php html html5

我想只在当前日期和时间小于结束日期但条件不起作用时才执行条件。我的代码中存在一些我无法找到的小问题。如何获取当前日期和时间作为strtotime的格式(“2016年8月19日下午05:15”);功能,所以我可以比较他们两个?

<?php
    $startdate  = strtotime("05:15pm August 19 2016");
    $enddate    = strtotime("05:14pm August 19 2016", $startdate);
    $current    = date("h:i M d y");**strong text**
    echo date("h:i M d y", $current);

    if ($current < $enddate) {
        echo date("M d", $startdate) . "<br>";
        echo " <strong> What do you prefer?</strong>
    <form role=\"form\" method=\"post\" action=\"VotingProcessing.php\">
        <label class=\"radio-inline\">
            <input type=\"radio\" name=\"optradio\" value=\"Breakfast\">Breakfast
        </label>
        <label class=\"radio-inline\">
            <input type=\"radio\" name=\"optradio\" value=\"Lunch\">Lunch
        </label>
        <label class=\"radio-inline disabled\">
            <input type=\"radio\" name=\"optradio\">Both
        </label>
        <input type=\"submit\" name=\"submit\">
    </form>";
    $startdate = strtotime("+1 week", $startdate);
    }
    else{
        echo "Expired";
    }

0 个答案:

没有答案