Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as PHP by los8005 ( 16 years ago )
<?php
$file_array = file('uin.txt');
echo($file_array[0]);
$file = fopen('uin.txt','w');
for($i = 1;$i<count($file_array);$i++){
fputs($file,$file_array[$i]);
}
fclose($file);
?>
Revise this Paste