2017-02-23 88 views
0

我收到錯誤。PHP網址參數錯誤

url.com/test.php?id=123&id2=456 

這是我get.php

<?php 

$id = $_GET['id']; 
$id2 = $_GET['id2']; 

?> 

我收到此錯誤的第二個參數

代替& URL獲取的&amp;

錯誤

[23-Feb-2017 03:45:00 UTC] PHP Notice: Undefined index: id2 in /home/xxxx/public_html/url.com/get.php on line 4 
+0

你爲此url_encode()和url_decode()函數 – Gulshan

+0

示例請先生 – Vince

+0

在谷歌搜索。你會發現示例 –

回答

1
try this.. 
    url.com/test.php?id=" . urlencode($id) . "&id2=" . urlencode($id2); 

Decode: 

    $id= urldecode($_GET['id']); 
    $id2= urldecode($_GET['id2']); 
+0

這是正確的解決方案.. – Gulshan

+0

標題(「位置:get.php ?FBID =」。用urlencode($ ID)。 「&FNAME =」 進行urlencode($ ID2)。 「」);不工作仍然出現錯誤。 – Vince

+0

使用此vcode再次嘗試 –