Posted by abscons on 03/01/07 16:27
On Mar 1, 12:09 am, Jerry Stuckle <jstuck...@attglobal.net> wrote:
> absc...@gmail.com wrote:
> > On Feb 28, 8:57 am, Sjoerd <sjoerd-n...@linuxonly.nl> wrote:
> >> absc...@gmail.com wrote:
> >>> Hi out there,
> >>> I have an url that looks like this:http://host/file?var=value.
> >>> I am trying to replace the "value" part in my url and assign it to a
> >>> link on my page. I tried to parse the url but can only get the part
> >>> before the ? not included.
> >>> Is there any way to do so?
> >> Yes. What do you have so far? Have you looked at $_SERVER[QUERY_STRING]
> >> and $_SERVER[REQUEST_URI]?
>
> >>http://nl3.php.net/manual/en/reserved.variables.php#reserved.variable...
>
> > This is the error I get when using REQUEST_URI: Notice: Undefined
> > index: REQUEST_URI
>
> It needs to be:
>
> $_SERVER['REQUEST_URI']
>
> Note the quotes - this is an index in the $_SERVER array.
>
> --
> ==================
> Remove the "x" from my email address
> Jerry Stuckle
> JDS Computer Training Corp.
> jstuck...@attglobal.net
> ==================
My exact call are:
$url = $_SERVER['REQUEST_URI'];
echo "URI: ".$url."<br/>";
and still: Notice: Undefined index: REQUEST_URI in index.php on line
21
[Back to original message]
|