File "connect.php"

Full Path: /home/analogde/www/Virtual/work/connect.php
File size: 216 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
	session_start();
	
	if(count($_GET)>0)
	{
		 
		
		$code = $_GET['password'];
        if($code = "1234"		
		{
		   $_SESSION['logged']= "yes";	
		   echo "1";
	    }
	else {
	       echo "2";
	     }
 
	}
?>