Re: [PHP-DB] Re: Passing variables from HTML to PHP

2004-08-31 Thread Philip Thompson
Thanks for your reply. Those who have responded, I am thankful to. ~Philip On Aug 31, 2004, at 4:14 PM, Jasper Howard wrote: if the checkbox is checked then you'll get the value in the php script. If globals are turned on then echo $foo; will work, otherwise you have to use something like: echo $

[PHP-DB] Re: Passing variables from HTML to PHP

2004-08-31 Thread Jasper Howard
if the checkbox is checked then you'll get the value in the php script. If globals are turned on then echo $foo; will work, otherwise you have to use something like: echo $_POST['foo']; its a good idea to write your scripts without dependency on globals being turned on, its a security risk for it