RE: [PHP] Transfer variable to next web-page

2001-11-17 Thread Matthew Loff
t [mailto:[EMAIL PROTECTED]] Sent: Saturday, November 17, 2001 1:01 PM To: [EMAIL PROTECTED] Subject: [PHP] Transfer variable to next web-page I just started.. How do you transfer a variable from one web-page to another I try to use a form like this: text for button "); ?>

Re: [PHP] Transfer variable to next web-page

2001-11-17 Thread Richard S. Crawford
Use $phpVariableName = $htmlVariableName; Remember to use the $ in front of the variable that you toss from the HTML form. At 10:00 AM 11/17/2001, Olav Drageset wrote: >I just started.. > >How do you transfer a variable from one web-page to another >I try to use a form like this: >ec

[PHP] Transfer variable to next web-page

2001-11-17 Thread Olav Drageset
I just started.. How do you transfer a variable from one web-page to another I try to use a form like this: text for button "); ?> and catch it injoin2.phpby: $phpVariableName=htmlVariableName; echo"$phpVariableName"; This do not work. Can anyone tel me what should be done Neith