Hi guys, i have these errors that are driving me nuts !!!
Here is my html file:
<form action="Handler.php" method="POST">
<input type="text" name="text1">
<input type="text" name="text2">
<input type="submit" value="GO">
</form>
And here is the Handler.php file:
<?php
echo $POST['text1'];
echo $POST['text2'];
?>
And here is what i get :
PHP Notice: Undefined index: FirstElement in C:\Documents and Settings\jbensimon\Desktop\forum guy\FormHandler.php on line 8 PHP Notice: Undefined index: SecondElement in C:\Documents and Settings\jbensimon\Desktop\forum guy\FormHandler.php on line 9