I pass a pariable to a simple script:
<Server>/doEmail.php?email=abc
If I access the vaiable in my script like
<?PHP echo $email; ?>
nothing is printed. Neither in the browser window, nor in the
sourcce of the HTML-code. Both is simply empty.
Fun thing: If I use phpinfo()/phpversion(), I see the parameter as
_GET(email)
with a correct value.
Second problem, probably not for this list:
Is submit a variable in my form named email. The resulting GET request
reads:
<Server>?Cmp00428EF438email=sss
Parameter ins in the URL after submitting the Form, but the parameter/value name
has changed.
Environment:
Server Apache/1.3.24
Client Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
PHP 4.2.0
____
CU sp