I have the following HTML form on a php page, I fould like the form to call a function on its own the page...
<form name="user_info" method="submit" action="return <? another($formvar) ?>
First Name: <input type="text" name="formvar[]">
Last Name: <input type="text" name="formvar[]">
Email address: <input type="text" name="formvar[]">
<input type="submit" name="enter_data" value="Enter Data">
</form>
So far, this is not correct and I'm not sure if it even can be done. If some could point me in the right direction it would be appreciated.
Stretchy