我需要点击按钮的操作来接收和发送变量以检查另一页面中的SQL语言。我不需要发送href类型。我可以通过这些动作发送吗?
<form id="form1" name="form1" method="post" action="alreport.php?dateal=<?php echo $datereportal_newformat?>">
<input type="text" name="AlcoholDate" id="datepicker" />
<input type="submit" name="button" id="button2" value="Submit"/>
</form>
答案 0 :(得分:0)
使用输入并将类型设置为隐藏
<form id="form1" name="form1" method="post" action="alreport.php">
<input type="hidden" name="dateal" value="<?= $datereportal_newformat; ?>"/>
<input type="text" name="AlcoholDate" id="datepicker" />
<input type="submit" name="button" id="button2" value="Submit"/>
</form>
答案 1 :(得分:0)
您可以使用以下方式访问您的变量:
<?php echo $_GET["dateal"] ?>
答案 2 :(得分:0)
使用隐藏有echo的输入类型来执行
http://www.w3schools.com/tags/tag_input.asp
<form action="/somewhere">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="submit" value="Submit">
<input type="hidden" value="<?php echo $var ?>" name="hiddenfield">
</form>