+ 1
PHP : security
How can one provide security in a PHP website? Ways to secure a PHP website.
2 Answers
+ 1
you can clear inputs from special symbols and use PDO for database access. Avoid direct interaction between JS and PHP variables. to avid XSS. These are basic inputs, there's probably more.
0
thanks for the help.