php从脚本创建按钮URL

时间:2013-07-07 00:41:28

标签: php ajax url variables button

我目前使用脚本生成需要传递到url的两个变量。这两个变量是从数组生成的。我想要做的是类似于“下一个”按钮,当用户点击时,它会将用户带到生成的网址

my_page.html

<form action="next_to_go.php" method="get">
<button id="next_to_go" class="btn btn-warning" type="submit">Next To Go</button>
</form>

next_to_go.php目前生成两个变量:  $ code和$ num为url

$my_url = '/today.php?code='.$code.'&num='.$num;
header('location:'.$my_url);

我尝试过使用...在自己测试'next_to_go.php'时有效。但是当单击my_page.html中的按钮时,它不起作用。此外,我仍在寻找(和学习)ajax解决方案...任何帮助将不胜感激!

编辑:使用ajax和next_to_go.php回显网址

$("#next_to_go").click(function(){

    $.ajax({
        type: 'POST',
        url: 'next_to_go.php',
        success: function(data) {
            window.location = href;
        }
    });
});

1 个答案:

答案 0 :(得分:1)

比我做的更容易......

在html中:

<a href="next_to_go.php" class="btn">Next</a>

在php中:

header('location:'.$my_url);