Advertisement
Guest User

Untitled

a guest
May 19th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <?php
  2. $file = 'bild.jpg';
  3. $hash = md5_file($file);
  4. echo 'MD5-Dateihash von ' . $file . ': ' .$hash.'<br>';
  5. if($hash != '411fe219ba192f1c8e8c0c05ddb17913'){
  6.   echo 'Ne du, das mit dem Rippen wird nichts';
  7. }
  8. else{
  9.   echo 'Guter Mann, Rippen ist nicht gut für die Gesselschaft und schon gar nicht für sein Image';   
  10. }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement