[PHP] Posting variable without form

2002-08-26 Thread Then Nam Kheong
Hello, I saw searching in the archive for posting variable without using a form. I saw the answer by one of you, which is in this link: http://www.faqts.com/knowledge_base/view.phtml/aid/12039/fid/51 The code is actually a senttohost() function:

Re: [PHP] Posting variable without form

2002-08-26 Thread Matt
From: Then Nam Kheong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 26, 2002 12:26 PM Subject: [PHP] Posting variable without form I tried it but it is not successful. I think it is because I tried to post to a https(SSL link). I would like to know if I can perform a SSL

Re: [PHP] Posting to a form - When user hits BACK button all the data is gone

2002-05-30 Thread Ed Gorski
The posted data on which page? The one submitted to? ed At 02:43 PM 5/30/2002 -0400, Phil Schwarzmann wrote: When a user is posting data to a form and hits SUBMIT the user is taken to another page. But when the user hits the BACK button on his browser, all the posted data is gone. How can I

Re: [PHP] Posting to a form - When user hits BACK button all thedata is gone

2002-05-30 Thread Duncan Hill
On Thu, 30 May 2002, Ed Gorski wrote: At 02:43 PM 5/30/2002 -0400, Phil Schwarzmann wrote: When a user is posting data to a form and hits SUBMIT the user is taken to another page. But when the user hits the BACK button on his browser, all the posted data is gone. How can I get this data

Re: [PHP] Posting to a form - When user hits BACK button all the data isgone

2002-05-30 Thread 1LT John W. Holmes
One way is to use a GET method instead of POST. ---John Holmes... - Original Message - From: Phil Schwarzmann [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 30, 2002 2:43 PM Subject: [PHP] Posting to a form - When user hits BACK button all the data isgone When a user

RE: [PHP] Posting to a form

2001-04-24 Thread Matthew Luchak
you can't have whitespace in $valsI would replace the whitespace with _ and vice-versa when you want to ouput the $vals... Matthew Luchak Webmaster Kaydara Inc. [EMAIL PROTECTED] I'm trying to do the following input type=text tabindex=17 name=Aname value=

[PHP] Posting to a form

2001-04-23 Thread Wade
I'm trying to do the following input type=text tabindex=17 name=Aname value= ? echo strtoupper($Aname); ? But when Aname is multiple words, such as Wade Williams, everything from the whitespace on gets cut off. Any ideas how to fix this? Thanks Wade -- PHP General Mailing List

Re: [PHP] Posting to a form

2001-04-23 Thread Jack Dempsey
it looks like you left off the quotes around the value that you're echoing...try putting it in like this input type=text tabindex=17 name=Aname value=? echo strtoupper($Aname); ? -jack Wade wrote: I'm trying to do the following input type=text tabindex=17 name=Aname value= ? echo