我创建了一个 html 提交按钮并与 ph-6ren">
gpt4 book ai didi

php - 我创建了一个 html 提交按钮并与 php 代码连接,但是选择该按钮后如何返回我的 html 页面?

转载 作者:行者123 更新时间:2023-11-29 17:23:26 24 4
gpt4 key购买 nike

 <?php
if($run == TRUE)
echo "Data Inserted Successfully <a href='index.html'>Click here to insert more</a>";
else
echo "Error !";enter code here
?>

我创建了一个 html 提交按钮并与 php 代码连接,但是选择该按钮后如何返回我的 html 页面?

最佳答案

实际上,我会更改表单以在同一页面上运行 PHP。因此,在创建表单的行上,不要输入 <form action='whatever.php'></form>我会删除操作部分,然后将 PHP 脚本移到同一页面上(确保它是 .php 而不是 .html),然后将整个脚本包装在如下所示的内容中:

if (isset($_GET['submit'])){ //or post depending on if you're using POST for your form, which is set by doing method=POST (suggested) or method=GET when creating the form's HTML
//your regular php script would go here :)
}

但是如果您坚持将 PHP 放在另一个页面上并直接返回,您可以这样做:

die(header('Location: index.html')); //change index.html to the directory of the page (or even a URL) that you want them directed to

祝你好运!

关于php - 我创建了一个 html 提交按钮并与 php 代码连接,但是选择该按钮后如何返回我的 html 页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51112906/

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