gpt4 book ai didi

php - 用于 CSS 表单测试的填充 URL

转载 作者:太空宇宙 更新时间:2023-11-04 14:14:26 25 4
gpt4 key购买 nike

我写了这个简单的表格,但我不知道填写表格的理论。将来我想从 MySQL 填写我的表单,但现在我需要以某种方式测试我的表单:

<table>                             
<tr>
<td><p style="text-align: right">name:</p></td>
<th><p style="text-align: left">',$name,'</p></th>
</tr>
<tr>
<td><p style="text-align: right">age:</p></td>
<th><p style="text-align: left">',$age,'</p></th>
</tr>
<tr>
<td><p style="text-align: right">place:</p></td>
<th><p style="text-align: left">',$place,'</p></th>
</tr>
</table>

所以,我需要替换 url 中的 $name, $age, $place,例如:http://test.mydomain.com/testform.php?name="Name Example"... 如何以正确的形式为结果名称编写/获取 url:Name Example,而不是 name: ',$name,'

最佳答案

如果我没理解错的话,你想发送一个带有 GET 的表单方法。

您必须使用 method="GET"在你的 HTML <form>标签。

您的 form.php 示例:

<FORM METHOD="GET" ACTION="testform.php">
<!-- your form goes here -->
</FORM>

现在,如果你想在你的 testform.php 页面中获取变量,你需要使用 $_GETPHP 中。

您的 testform.php 示例:

<?php

// get FORM variables
$name = $_GET['name'];
$age = $_GET['age'];

// print variables
echo $name;
echo '<br>';
echo $age;
?>

要像您的示例一样在表中打印变量,您可以先检索变量,然后将其放入表中:

另一个例子:

<?php

// get FORM variables
$name = $_GET['name'];

// ...
?>
<table>
<tr>
<td><p style="text-align: right">name:</p></td>
<th><p style="text-align: left"><?php echo $name ?></p></th>
</tr>
</table>

关于php - 用于 CSS 表单测试的填充 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20466453/

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