Thanks, for some reason though, its now only displaying some entries. The php I am using:
php code:
<?php
$file = 'admins.cfg';
preg_match_all('/"([^"]*)"\n\s*\{\n\s*"auth"\s*"([^"]*)"\n\s*"identity"\s*"([^"]*)"\n\s*"group"\s*"([^"]*)"\n\s*"immunity"\s*"([^"]*)"/',str_replace("\r\n","\n",file_get_contents($file)),$matches);
echo '<table border="1px solid #000">';
for($i=0;$i<count($matches[0]);$i++){
echo '<tr>';
echo '<td>'.$matches[1][$i].'</td>';
echo '<td>'.$matches[2][$i].'</td>';
echo '<td>'.$matches[3][$i].'</td>';
echo '<td>'.$matches[4][$i].'</td>';
echo '<td>'.$matches[5][$i].'</td>';
echo '</tr>';
}
echo '</table>';
?>
Website the table is being displayed on:
http://66.90.103.33/website/admins.php
And I shall PM you a link to "admins.cfg"
Also is there any way to make those characters that arent working appear? I tried setting the php page to utf-8, but it still displayed them as that question mark.