gpt4 book ai didi

php - html,css.php?帮助如何将我的表单提交输出到网页而不是文本文件?

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

帮助我在 html、css 方面有一些知识但是我对 php 表单、数据库等东西有点陌生

我的 php 运行良好,当用户单击提交时,所有表单都转到 carlist.txt

但我希望它通过网页 html 而不是 .txt 输出它,以便我可以在线查看我怎么能做到这一点?

而且我不希望用户看到他们提交的...只有我可以查看

html:

<html>
<form action"awesome.php" method=get>

First name: <input type="text" name="firstname"><br>
blah.. blahh.
<select name="cars">
<option value="volvo">Volvo XC90</option>
<option value="saab">Saab 95</option>
<option value="mercedes">Mercedes SLK</option>
<option value="audi">Audi TT</option>
</select>
<input type="submit" value="Submit">
</form>
etc. etc. blah blah
</html>

awesome.php:

<?php
header("Location: thanksforsubmiting.html");
$handle = fopen("carslist.txt", "a");
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>

thanksforsubmitting.html:

<html>
<title>thank you</title>
<h1> <font color=red>
thank you for submission </h1></font>

</html>

请对我有点温柔,我有点新手:)) TIA

最佳答案

<?php
foreach($_GET as $variable => $value) {
echo $value."<br />";
}
?>

如果您想在线查看它,请使用类似的内容创建另一个页面

$file = file_get_contents('carlist.txt');
$rows = explode("\n", $file);
foreach($rows as $row) {
print_r($row);
}

关于php - html,css.php?帮助如何将我的表单提交输出到网页而不是文本文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20512560/

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