Originally posted here by csl
Code:
<form action="" method="post">
the form is not set up to do anything yet.
Hey Hey,

How about you enter this information

First Name: John
Last Name: Edwards
DOB: 06/10/1953
ZIP code: 27514

and then tell me it doesn't do anything

You can also check out this quick demo I made... you'll also note there is no submit button.. Just hit enter while in the textbox.

http://www.aoaddicts.net/htregz/blankactiondemo/

Just so ya don't think I'm screwing with ya

Here's the code for that page

Code:
<html>
<head>
<title>Blank Action= in Form Demo</title>
</head>
<body>
<?
if(isset($_POST[name])) {
echo "Hello $_POST[name]";
}
else {
?>
<form action="" method="post">
Enter Your Name: <input type="text" name="name" />
</form>
<?
}
?>
</body>
</html>
Peace,
HT