提问人:Abdulrahman Youssef 提问时间:8/20/2023 最后编辑:PippoAbdulrahman Youssef 更新时间:8/20/2023 访问量:34
关于 Form 方法的 [已关闭]
About Form method's [closed]
问:
作为一名大三学生,我试图制作像谷歌表单一样的表单,我想在我的项目中使用 GET/POST 表单方法收集数据。我在书中尝试了一些代码,但我从表单中得到清晰的页面或没有输出。另外,我只想看到这些数据不出现在客户面前,最好的方法是什么?
我使用的简单代码:
/* PHP --- index.php*/
<form action="collect.php" method="POST">
<input type="text" name="name" id="inputName">
<br><br>
<input type="password" name="name" id="inputNumber">
<br><br>
<input type="submit" value="Login">
</form>
已使用此代码
/*collect.php*/
<?php
$id = '';
$name ='';
if(isset($_GET['id']))
$id = $_GET['id'];
if(isset($_GET['name']))
$name =$_GET['name']; "<br>";
echo $id . '-' . $name;
foreach($_GET as $key=>$value){
echo $key . '=' .$value . '<br>';
}
?>
<?php
foreach($_POST as $key=>$value){
echo $key . ': ' . $value . '<br>';
}
?>
答:
0赞
Aesir Concepcion
8/20/2023
#1
尝试将表单操作更改为此操作=“./collect.php”
评论
0赞
Abdulrahman Youssef
8/20/2023
是的,它的成功非常感谢 <3
评论
<?php