// After opening the file pointer see fopen()
echo "<table>
<tr>
<th>ClientID
<th>WebUserName
<th>Password
<th>HomeDir";
while(!feof($fp)) {
$rawdata = fgets($fp, 1024);
$parsearray = explode("|",$rawdata);
echo "<tr>";
for($i=0;$i < sizeof($parsearray); $i++) {
echo "<td>$parsearray[$i]";
}// end for
}// end while
I hope this Helps! (Might have errors in it Studying Linear Alg. tends to fry your brain 🙂 )