I dunno it was working fine...and i did not change anything actually but suddenly this error keeps on coming... i dont know why!! please help!!
Im trying to such a simple thing! Display what was sent by a form! datz all!!
But when i try to run this in Wamp Server v2.0
i get the following error!
Notice: Undefined index: txt_name in C:\WAMP\www\GuestBook.php on line 6
Please HELP!!!
Im trying to such a simple thing! Display what was sent by a form! datz all!!
Code:
<?php
$name = $_POST["txt_name"];
?>
<html>
<head>
<title> Guest Boook</title>
</head>
<body>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
<center>
Name : <input type="text" name="txt_name"> </input>
Email : <input type="text" name="txt_email"> </input>
<br>
<br>
Comment
<br>
<textarea name="txt_comment" style="width : 75%" rows=10" ></textarea>
<br>
<br>
<input type="submit" value="Submit"> </input>
</center>
</form>
</body>
</html>
But when i try to run this in Wamp Server v2.0
i get the following error!
Notice: Undefined index: txt_name in C:\WAMP\www\GuestBook.php on line 6
Please HELP!!!

