Re: [PHP] page redirecting

2006-08-14 Thread Richard Lynch
On Sun, August 13, 2006 6:49 pm, Gerry D wrote: On 6/28/06, Richard Lynch [EMAIL PROTECTED] wrote: On Wed, June 28, 2006 5:17 am, kristianto adi widiatmoko wrote: i need to redirecting page, it could be done by using header function like this header(Location : page2.php?var1=foo);

Re: [PHP] page redirecting

2006-08-13 Thread Gerry D
On 6/28/06, Richard Lynch [EMAIL PROTECTED] wrote: On Wed, June 28, 2006 5:17 am, kristianto adi widiatmoko wrote: i need to redirecting page, it could be done by using header function like this header(Location : page2.php?var1=foo); Then, the URL should be a full, complete URL, and not

[PHP] page redirecting

2006-06-28 Thread kristianto adi widiatmoko
HI folks, i need to redirecting page, it could be done by using header function like this header(Location : page2.php?var1=foo); but i need to hide variable from being displayed by browser since the content of variable is secret. I guess i need POST method instead of GET for redirecting that

Re: [PHP] page redirecting

2006-06-28 Thread Prathaban Mookiah
-general@lists.php.net Sent: Wed, 28 Jun 2006 11:17:33 +0100 (BST) Subject: [PHP] page redirecting HI folks, i need to redirecting page, it could be done by using header function like this header(Location : page2.php?var1=foo); but i need to hide variable from being displayed by browser since

Re: [PHP] page redirecting

2006-06-28 Thread cajbecu
If the content of that variable is secret please don`t use GET or POST method to send it in CLEAR. beacuse somebody who know a little bit PHP or can break your code. You can hide that by hashing it, or crypt it with password. or something... using POST method.. of course. kristianto adi

Re: [PHP] page redirecting

2006-06-28 Thread Stut
kristianto adi widiatmoko wrote: HI folks, i need to redirecting page, it could be done by using header function like this header(Location : page2.php?var1=foo); but i need to hide variable from being displayed by browser since the content of variable is secret. I guess i need POST method

Re: [PHP] page redirecting

2006-06-28 Thread Andrei
Anyway if the content should be *secret* you should think about storing them on server-side. Andy Stut wrote: kristianto adi widiatmoko wrote: HI folks, i need to redirecting page, it could be done by using header function like this header(Location : page2.php?var1=foo);

Re: [PHP] page redirecting

2006-06-28 Thread Jochem Maas
kristianto adi widiatmoko wrote: HI folks, i need to redirecting page, it could be done by using header function like this header(Location : page2.php?var1=foo); but i need to hide variable from being displayed by browser since the content of variable is secret. I guess i need

Re: [PHP] page redirecting

2006-06-28 Thread Richard Lynch
On Wed, June 28, 2006 5:17 am, kristianto adi widiatmoko wrote: i need to redirecting page, it could be done by using header function like this header(Location : page2.php?var1=foo); For starters, it Location : should be Location: (no space) Then, the URL should be a full, complete URL, and

Re: [PHP] page redirecting

2006-06-28 Thread Ligaya Turmelle
Richard Lynch wrote: usually daft ... and slam the data into ... completely OT Don't ask me why - but I enjoyed your choice in words... /completely OT -- life is a game... so have fun. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php