#
November 27, 2009 at 9:52 pm
Where does this form submit it’s information to? itself?
<form name="password1" id="password1">
needs to have an "action=…" attribute like this:
<form name="password1" id="password1" action="">
If you leave it blank (like above), it should submit to itself. (That’s most likely what happens when you don’t have an action specified.) You can tell it a page to submit to like this:
<form name="password1" id="password1" action="/folder/page.php">
Make sense?