Heres what I'm trying to do:
I have a form
<form action="<?=$PHP_SELF?>" method="post" name="registration" id="registration">
I also have some validations for the form, if all the data passes the validation, I want to go to another file called register.php
I tried to put <form action"register.php".... but in this case, it will skip my validation and go straight to the register.php.
How can I go to redirect/point to another file, other than <form action=>?
Thanks 🙂