表单值不通过php中的action url传递

发布于 2025-01-11 18:12:35 字数 648 浏览 0 评论 0原文

我有一个用 PHP 制作的简单表单,我试图传递操作 URL 中提到的页面中的选择值,

<form action="filtertable.php" method="post">
    <select class="form-select" name="filtercategory" aria-label="Default select example"
        onchange="this.form.submit()">
        <option selected>Select Category</option>
        <option value="<?php echo $roww["c_id"]; ?>"><?php echo $roww["cname"]; ?></option>
    </select>
</form>

当用户在任何选择框中选择时,它将转到页面 filtertable.php,并从那里尝试获取这样的选定值:

<?php

$filtercategory=$_POST['filtercategory'];

但是它不起作用,任何人都可以告诉我这里出了什么问题,提前致谢

I have a simple form made in PHP, I am trying to pass the select value in the page mentioned in the action URL,

<form action="filtertable.php" method="post">
    <select class="form-select" name="filtercategory" aria-label="Default select example"
        onchange="this.form.submit()">
        <option selected>Select Category</option>
        <option value="<?php echo $roww["c_id"]; ?>"><?php echo $roww["cname"]; ?></option>
    </select>
</form>

when the user selects on any select box it will go to the page filtertable.php, and from there am trying to get the selected value like this:

<?php

$filtercategory=$_POST['filtercategory'];

However it doesn't work, can anyone please tell me what is wrong in here, thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文