here is what i have and it is not working...
<?php
$fd = fopen ("/etc/passwd", "r");
while (!feof ($fd)) {
$data = fgets($fd, 4096);
}
fclose ($fd);
list($user,$pass,$uid,$gid,$gecos,$home,$shell) = explode(":",$data);
for($i=0;$i<50;$i++){
echo("<table><tr><td>$user<td>$pass<td>$uid<td>$gid<td>$gecos<td>$home<td>$shell</td></tr></table>");
}
?>