Strings Php

$GoodPassword = 'asdfg'; 
$password = 'asdf';
if ($password == $GoodPassword){ 
    print "Password verified!\n"; 

?>