我有以下问题。我想尝试避免为我的php代码使用会话,因此我想通过读取标头来尝试获取要传输的值。这样的事情有可能吗?
header('Location: https://whatever.de/v_new_vote_page.php'."?=" . $id_poll);
我基本上想从头获取$ id_poll而不使用会话。这样的事情可能吗?
答案 0 :(得分:0)
尝试一下:
使用标头发送基于$ _GET的值
header('Location: https://whatever.de/v_new_vote_page.php?id_poll='. $id_poll);
在v_new_vote_page.php
<?php
echo $_GET['id_poll'];
?>