Im building a simple yet robust small e commerce site
what i wanna know is:
is it more safe and secure to add the mysql commands such as select add update delete in the same html form
or create another php file for that as a process?
example:
i have an add customer page
the file is add.php
and for me to add that into the database
i pass variables and do the insert in another file called:
add_command.php
is it a big deal?
can the be a possible security issue incase?
thank you!