Re: [PHP] Showing up variables in URL !

2001-09-18 Thread Alex Shi

Try this:



Alex

- Original Message -
From: "Arcadius A." <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, September 19, 2001 6:14 AM
Subject: [PHP] Showing up variables in URL !


> Hello !
> We all know how to pass value to variable using an URL.
> So, how can I do the inverse ?
> I mean , showing the value of a variable in the URL?
>
> for instance  my page "index.php" is :
>
>  $greetings="Hello" ;
> echo $greetings ;
>  ?>
>
> So, how to make PHP so that when I load my page in the browser(typing
> "index.php" in the adress bar) , it will print not only "hello" on the
> page,but also show "index.php?greetings=hello"   as URL  , So , I
> basically want PHP to dynamically append  "?greetings="  to
> the URL I've typed
>
> How to do this ?
> I hope I've made myself understood ... :o)
>
> Thanks...
>
> Arcad.
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
>


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Showing up variables in URL !

2001-09-18 Thread Richard Baskett

The question is... "Why would you want to do this?"

Rick

> Hello !
> We all know how to pass value to variable using an URL.
> So, how can I do the inverse ?
> I mean , showing the value of a variable in the URL?
> 
> for instance  my page "index.php" is :
> 
>  $greetings="Hello" ;
> echo $greetings ;
> ?>
> 
> So, how to make PHP so that when I load my page in the browser(typing
> "index.php" in the adress bar) , it will print not only "hello" on the
> page,but also show "index.php?greetings=hello"   as URL  , So , I
> basically want PHP to dynamically append  "?greetings="  to
> the URL I've typed
> 
> How to do this ?
> I hope I've made myself understood ... :o)
> 
> Thanks...
> 
> Arcad.
> 
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
> 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Showing up variables in URL !

2001-09-18 Thread Arcadius A.

Hello !
We all know how to pass value to variable using an URL.
So, how can I do the inverse ?
I mean , showing the value of a variable in the URL?

for instance  my page "index.php" is :



So, how to make PHP so that when I load my page in the browser(typing
"index.php" in the adress bar) , it will print not only "hello" on the
page,but also show "index.php?greetings=hello"   as URL  , So , I
basically want PHP to dynamically append  "?greetings="  to
the URL I've typed

How to do this ?
I hope I've made myself understood ... :o)

Thanks...

Arcad.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]