I\'m trying to execute a PHP function in the same page after the user enters a text and presses a submit button.
The first I think of is using forms. When the user s
Take a look at this example:
PHP Form Validation Example "> Name: E-mail: Website: Comment: Gender: Female Male Your Input:"; echo $name; echo ""; echo $email; echo ""; echo $website; echo ""; echo $comment; echo ""; echo $gender; ?>