gpt4 book ai didi

javascript - if 语句不适用于 php/html/javascript。总是假的

转载 作者:行者123 更新时间:2023-12-03 08:38:58 25 4
gpt4 key购买 nike

我在使用以下代码时遇到问题。为什么当我测试 $date 变量时,if 语句的返回值始终为 true?代码的目标是在第一次加载页面时检查 $date 变量是否为空。如果页面是第一次加载,$date变量将返回当前日期,如果我从表单中选择一个日期,它将加载相同的页面,变量$date将是所选日期。

        <form action="#" method="POST">
<p>Select date: <input type="text" id="datepicker" name="datepicker" style="display: inline !important; width: 100px;">
<input type="submit" value="Ok"></p>
<?php
//Variable to return the value of datepicker (calendar)
if (empty($date)) { //condition to check if the $date variable is empty, if empty select current date and send value to another php script
$date=date("Y-m-d")."%"; //select current date
$_SESSION['sending_date'] = $date;
} else{// if the value of date was selected, send variable value to another php script
$_SESSION['sending_date'] = $_POST['datepicker'] . "%";
}
?>
<div id="draw_chart"></div>
</form>

最佳答案

如果 $_POST['datepicker'] 为空,我认为您正在尝试设置 $_SESSION['sending_date']

基于该假设,修改后的 if 语句应为:if (empty($_POST['datepicker']))

关于javascript - if 语句不适用于 php/html/javascript。总是假的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33111661/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com