Mega Code Archive

 
Categories / Php / Strings
 

Check string password

<?php  $GoodPassword = 'asdfg';  $password = 'asdf'; if ($password == $GoodPassword){      print "<b>Password verified!</b>\n";  }  ?>