File "connect.php"

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

<?php

	$username=$_GET["username"];
	$password=$_GET["password"];

	if($username == "root") /* && $password=="1234")*/
	{
		echo "ok";
	}
else{
		echo "fail";
	}

?>