
1. Use a redirect function in PHP without header/location stuff:
function redirect($page,$time) {
echo '<meta http-equiv="refresh" content="'.$time.'; url='.$page.'" />';
}
Now use:
redirect('/3_quick_php_tips/index.html',3);
in order to redirect to index.php after 3 seconds.
2. Generate 3 characters salt strings:
// Salt Generator
function generate_salt() {
// Declare $salt
$salt = '';
// And create it with random chars
for ($i = 0; $i < 3; $i++) {
$salt .= chr(rand(35, 126));
}
return $salt;
}
Change $i < 3 with more characters, as suited to your needs.
3. Clean up user input:
$name = ucwords(strtolower($name)); // Transforms "heLLO wOrLD" into "Hello World"



Loading ...