gpt4 book ai didi

php - 为什么此代码不再显示我的文本框的值?

转载 作者:行者123 更新时间:2023-12-04 22:14:04 29 4
gpt4 key购买 nike

我是 PHP 的初学者。 2 天前,我写了几行有效的代码,但昨天,它不再有效了。代码是:

<body>
<form method='post' action='test.php'>
name <input type='text' id='txtName'/>
age <input type='text' id='txtAge'/>
<input type='submit'/>
<hr/>
name <?php echo $_POST['txtName']; ?>
age <?php echo $_POST['txtAge']; ?>
</form>
</body>

它所做的只是显示文本框的值,但它不起作用。为什么?

最佳答案

在你的输入标签上使用 name 属性而不是你的 php post 变量的 ID:

<body>
<form method='post' action='test.php'>
name <input type='text' name='txtName'/>
age <input type='text' name='txtAge'/>
<input type='submit'/>
<hr/>
name <?php echo $_POST['txtName']; ?>
age <?php echo $_POST['txtAge']; ?>
</form>

关于php - 为什么此代码不再显示我的文本框的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3401990/

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