Quote:
|
Originally Posted by Gungadin
if ($php) { print "Go Fuck Yourself\n"; } else { header("Location: http://www.php.net"); }
|
Actually I think there is no need to write the "{" becouse you are just writing one line for each case.. so:
if ($php) print "Go Fuck Yourself\n"; else header("Location: http://www.php.net");
