View Single Post

  #4 (permalink)  
Old 12-28-2007
The87Boy
 
Posts: n/a
Default Re: Changes between some lines

On Dec 27, 6:06 pm, "Rik Wasmus" <luiheidsgoe...@hotmail.com> wrote:
> In the request itself:
> $_GET['id']


I already know this one, but it is possible, it is not localhost, and
there why I can not use this one

> Parsing the url as a string in another file (if you'd like to examine the
> target in another script for instance):
> $id = false;
> $url = 'http://localhost/index.php?cmd=14&id=3325253&from=2';
> $querystring = parse_url($url, PHP_URL_QUERY);
> if(!empty($querystring)){
> parse_str($querystring,$array);
> $id = isset($array['id']) ? $array['id'] : false;}


This was actually what I was searching for, but I did not know, there
was a PHP function, there why my question
Reply With Quote