your fgets should be inside the loop. else you are in an infite loop.
ps: are you brute forcing password file ;-)
Richard Kurth wrote:
Way does this while loop not work. It does not read anything in the file. If I add ! in front of feof it will just loop forever but still it will not read the next line in the file. The file has two lines in it that look like this. tester3:$1$09BZpdge$b7TQcsYSsAP1hgiCuCWtS1 tester5:$1$5eq3i75D$XK9QzaS.7bHyWVf4bdyJs/
$filenum="test"; $fpHt = fopen($filenum, "r"); $fpLine = fgets($fpHt,512); while(feof($fpHt)) { $fpLine = trim($fpLine); $fpData = explode(":", $fpLine); $fpData[0] = trim($fpData[0]); echo $fpData[0]; }
-- Raditha Dissanayake. ------------------------------------------------------------------------ http://www.radinks.com/sftp/ | http://www.raditha.com/megaupload Lean and mean Secure FTP applet with | Mega Upload - PHP file uploader Graphical User Inteface. Just 150 KB | with progress bar.
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

