我有一个变量,我需要使用URL传递到第二页,我使用javascript encodeURI()作为变量。
例如,在第一页中,我确实在标题中输入了test & test
。在第二页中,URL中的变量将如下所示
http://localhost/schedule/sc_add_planresult.php?isallday=0&title=test%20&%20test
在我的第一页中,我正在使用:
var eurl="sc_add_planresult.php?isallday="+id+"&title="+data[2];
window.open(encodeURI(eurl), "_self");`
我的问题是,我怎样才能$_GET
变量,以便我可以获得完整的单词'test&测试'?
这是我的声明:
$schTitle = isset($_GET['title']) ? $_GET['title'] : null;
我确实尝试过使用:
$schTitle = rawurlencode($_GET['title']));
$schTitle = isset($_GET['title']) ? $_GET['title'] : null;
$schTitle =urldecode($varr);
但仍然要么出错,要么标题只显示为“test”。
请帮帮我。
感谢。