gpt4 book ai didi

php - 如果(isset($_POST ["myvar"])&& isset($_POST ["myvar2"])失败

转载 作者:可可西里 更新时间:2023-11-01 16:55:22 28 4
gpt4 key购买 nike

如果我使用此代码将数字作为输入,它可以正常工作

<form  method = "post">
Hours: <input type="text" name="myvar">
</form>

<?php
require 'connect.php';
if (isset($_POST["myvar"])) {

但是下面获取 2 个数字的代码不会通过。我怎样才能使它工作?

<form  method = "post">
Hours: <input type="text" name="myvar">
</form>
<form method = "post">
Minutes: <input type="text" name="myvar2">
</form>

<?php
require 'connect.php';
if (isset($_POST["myvar"]) && isset($_POST["myvar2"])) {

最佳答案

只使用一种形式。此外,如果有多个输入,则需要使用 submitimage 类型的输入,以便您可以提交表单。

<form  method = "post">
Hours: <input type="text" name="myvar"/>

Minutes: <input type="text" name="myvar2"/>

<input type="submit"/>

</form>

我假设您不想显示提交按钮,您可以做的是使用 css 将按钮推离屏幕。

<form  method = "post">
Hours: <input type="text" name="myvar"/>

Minutes: <input type="text" name="myvar2"/>

<input type="submit"
style="position: absolute; left: -9999px; width: 1px; height: 1px;"
tabindex="-1" />

</form>

关于php - 如果(isset($_POST ["myvar"])&& isset($_POST ["myvar2"])失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34895891/

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