Related Articles
MySQL – PHP Prepared Statements
Prepared statements help prevent SQL Injection attacks. Essentially they send a template for your SQL Statement, and then inserts the variables separately. This prevents hackers from escaping out of the original SQL statement and being […]
PHP – Access Named Keys in Arrays – Foreach()
The foreach() function can turn Named Keys into variables just like it does array values.
PHP – $_GET to Send Variables in Hyperlinks
You can send Variable Names and Values using hyperlinks to PHP Scripts. This is an easy way to send variable data, but is incredibly insecure. To send a variable to a PHP script add ?variable_name=variable_value […]
Be the first to comment