Hi!
I cannot figure out how to call a function when submitting a form
index.php
[php]
function myFunction() {
echo $_POST[‘first_name’];
}
and I want to have this function and codes on the same page index.php
how can I also display form when it is only blank? or on first page visit?