[PHP] Re: Post CGI variable to PHP

2002-01-10 Thread LaserJetter
If you send a form on an HTML page using GET then the variables show up in the URL. If you send it using POST then they dont. With PHP 4.1.0 even if the variable is typed in the URL, PHP should only read the real variables which were submitted if $_GET[$varname] is used (or whatever it is!) I

Re: [PHP] Re: Post CGI variable to PHP

2002-01-10 Thread Job Miller
to post to a PHP script from within perl, you would either define a form in the perl script that has a submit button whose action is a php script, or you can use the LWP module in Perl to generate a POST for you. this will post the stuff to the php script and fetch the results. it isn't a