我收到錯誤。PHP網址參數錯誤
url.com/test.php?id=123&id2=456
這是我get.php
<?php
$id = $_GET['id'];
$id2 = $_GET['id2'];
?>
我收到此錯誤的第二個參數
代替&
URL獲取的&
錯誤
[23-Feb-2017 03:45:00 UTC] PHP Notice: Undefined index: id2 in /home/xxxx/public_html/url.com/get.php on line 4
你爲此url_encode()和url_decode()函數 – Gulshan
示例請先生 – Vince
在谷歌搜索。你會發現示例 –