Don't like ads? PRO users don't see any ads ;-)
Guest

PHP error

By: karezma on May 6th, 2012  |  syntax: PHP  |  size: 0.38 KB  |  hits: 22  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <form action = "wordpress-scanner.php" method = "GET">
  2.         Enter The password <br>
  3. <input type = "password" name ="password" >
  4. <input type = "submit"  class ="button" name ="submit" ></form>
  5.  
  6. </center>
  7. </form>
  8. <?
  9. $pass = $_GET['password'];
  10. if ($_GET['submit']){
  11. if ($pass = "welcome"){
  12.        
  13.         echo "welcome to the new web";
  14.        
  15.        
  16.         }      
  17.        
  18.         else {
  19.                 echo "False";
  20.                
  21.                 }
  22.        
  23.         }
  24. ?>