在提交之前合并$ _GET变量

时间:2012-12-10 04:45:03

标签: php html forms get

我不确定这是否可行,但这是我无法弄清楚的问题。

从中获得一个导致此链接的结果。

最终结果链接。

http://www.website.com/index.php?a=price_range_A_B

我不能使用from但我可以使用输入字段。 有什么想法吗?

1 个答案:

答案 0 :(得分:1)

编辑:由于OP改变了问题,我在下面更新了我的答案。

我举一个如何做到这一点的例子。

<?php  
    $action_path = "index.php";
    ?>

    <script type="text/javascript">
        function submitData() {
            var a = null;
            var _A = document.getElementById("_A").value;
            var _B = document.getElementById("_B").value;

            a = "price_range_" + _A + "_" + _B;

            window.location.href = "<?php echo $action_path; ?>?a=" + a;

            return;
        }
    </script>

    <input type="text" id="_A" maxlength="6" size="5" />
    <input type="text" id="_B" maxlength="6" size="5" />
    <input type="button" value="Submit" onclick="submitData();" />

    <?php
    // the code to be put after </form> goes here
?>