Hello, Can I call a php function using forms in the same way as I do for a javascript function? (in the same page, not with php_self).
<?php
function()
{...........
}
?>
<form method="post" action=function()>
.....
....
</form>
Thanks, Adrian

