gpt4 book ai didi

php - 从文本框中获取值

转载 作者:行者123 更新时间:2023-12-02 22:59:40 25 4
gpt4 key购买 nike

我想获取 PHP 中文本框的值,当我尝试这样做时:

<form method=post action="update.php">
<input type="text" name="Hex" />
<input type="submit" value="OK" />
</form>
<?php
$test = $_POST['Hex'];
echo $test;
?>

我刚刚收到错误:

Undefined index: Hex

我用谷歌搜索没有结果;所以请有人帮助我!

最佳答案

我认为问题出在引号上,@GuiceU,你忘了在帖子中添加引号。

只需将 method = post 替换为 method="post"

HTML 代码:

<form method="post" action="update.php">
<input type="text" name="Hex" />
<input type="submit" value="OK" />
</form>

PHP 代码:

<?php
$test = $_POST['Hex'];
echo $test;
?>

关于php - 从文本框中获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10366761/

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