RE: [PHP] How can I suppress my variables from showing up in the address bar?

2001-10-02 Thread Jack Dempsey

use METHOD=POST in your form

-Original Message-
From: Salty Marine [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, October 02, 2001 1:57 PM
To: [EMAIL PROTECTED]
Subject: [PHP] How can I suppress my variables from showing up in the
address bar?



Greetings to All of You on the List:

How can I suppress my variables from showing up in the address bar?  I have
a form that's passing information to a script of mine, via the address bar.

http://foobar.com/EmailList.php3?Newsletter_ID=4732Subscription_Action=Remo
ve[EMAIL PROTECTED]

How can I suppress my variables from showing up in the address bar?

Regards,
Salty


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


--
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] How can I suppress my variables from showing up in the address bar?

2001-10-02 Thread paharito

Like this:

FORM METHOD=post

Whit post, the variables are not shown.

You maybe use this:

INPUT TYPE=hidden NAME=the_name VALUE=? echo $var; ?

;)

- Original Message -
From: Salty Marine [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, October 02, 2001 7:57 PM
Subject: [PHP] How can I suppress my variables from showing up in the
address bar?



 Greetings to All of You on the List:

 How can I suppress my variables from showing up in the address bar?  I
have
 a form that's passing information to a script of mine, via the address
bar.


http://foobar.com/EmailList.php3?Newsletter_ID=4732Subscription_Action=Remo
 ve[EMAIL PROTECTED]

 How can I suppress my variables from showing up in the address bar?

 Regards,
 Salty


 _
 Do You Yahoo!?
 Get your free @yahoo.com address at http://mail.yahoo.com


 --
 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]