Search found 4 matches

by knnknn
Sun Nov 16, 2003 4:44 pm
Forum: PHP - Code
Topic: I need $_Get WITHOUT automatic urldecode
Replies: 8
Views: 3678

RTT wrote:Would urlencode work? As in, to re-encode it?
Nope, because the xxxxxxxx is scambled with random characters inserted etc.

But I think I found a solution by utilizing
$URL = $_SERVER['QUERY_STRING'];
instead of $_get.
by knnknn
Sun Nov 16, 2003 4:27 pm
Forum: PHP - Code
Topic: I need $_Get WITHOUT automatic urldecode
Replies: 8
Views: 3678

But it grabs it with $_get which produces the "faulty" decoded results, that I don't want.
by knnknn
Sun Nov 16, 2003 4:13 pm
Forum: PHP - Code
Topic: I need $_Get WITHOUT automatic urldecode
Replies: 8
Views: 3678

Are you sure that the problem is related?
by knnknn
Sun Nov 16, 2003 3:54 pm
Forum: PHP - Code
Topic: I need $_Get WITHOUT automatic urldecode
Replies: 8
Views: 3678

I need $_Get WITHOUT automatic urldecode

I call a script... aaa.com/script.php?id=xxxxxxx ...and I need to get the xxxxxxx part with $_GET['id'] BUT WITHOUT automatic urldecode. In other words: I want to keep all the %2f and %3a etc. inside the xxxxxxx Is that possible? No, urldecode($_get) is not possible, because the xxxxxx part has been...