作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用以下代码时遇到问题。为什么当我测试 $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/
我是一名优秀的程序员,十分优秀!