If you mean validate as in checking for sql injections just do thisTheOracle wrote: Also, how do 'validate' $_POST['username']?
Code: Select all
<?php
addslashes($_POST['username'])
?>Moderator: General Moderators
If you mean validate as in checking for sql injections just do thisTheOracle wrote: Also, how do 'validate' $_POST['username']?
Code: Select all
<?php
addslashes($_POST['username'])
?>