[ create a new paste ] login | about

Link: http://codepad.org/9aLQkinU    [ raw code | output | fork ]

PHP, pasted on May 20:
1
2
3
4
5
6
7
8
<?php
$first = md5("Password147186970!");
$second = md5("240610708");
if($first == $second){
  echo "same!";
}else{
  echo "wrong...";
}


Output:
1
same!


Create a new paste based on this one


Comments: