I just have a suggestion.

If you are trying to use variables from a form, based on the method used
(POST or GET),
you can do something like this (and maybe this will avoid the warnings if
you do'nt want to change your error reporting level):

<snip1>
<html>
.....
<body>
<form>
Name: <input type="text" name="name">
E-mail: <input type="text" name="email">
</form>
....
</body>
</html>
</snip1>


<snip2>
<?

if ( isset($HTTP_*_VARS) ) {
    extract($HTTP_*_VARS);  ## '*' is either GET or POST, depeding on the
method used to submit the form
}

echo "Name: $name <br>";
echo "E-mail: $email <br>";

## remaining code here

?>
</snip2>


Then, all the keys of this arrray are ready to use as variables. This may
help; I haven't actually tried this with the E_NOTICES on ...



--
Nicole Amashta
Web Applications Developer
ABOL Software, Inc.

[EMAIL PROTECTED]



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to