gpt4 book ai didi

php - 如何使用html按钮发送POST请求

转载 作者:太空宇宙 更新时间:2023-11-04 16:18:17 24 4
gpt4 key购买 nike

我想使用 html 按钮发送发布请求。我知道这很容易通过 jQuery ajax 完成,但我不想使用 jquery 和 ajax。我该怎么做?

这是我的功能

public function editProduct() {
if($_SERVER['REQUEST_METHOD'] === 'POST') {
echo 'You are authorized';
} else {
echo 'You are not authorized to access this page.';
}
}

这是我的 HTML 按钮

<button type="submit" onclick="location.href = '<?=base_url().'company/admin/add_product/editProduct?>';">Send Post Request</button>

最佳答案

在你的表单标签中,写一个method="post"

<form method="post">
...
<button type="submit" >
</form>

关于php - 如何使用html按钮发送POST请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30864319/

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