Ok I am rather new with PHP and I have used this one Chat program written in PHP.
Has anyone familiar with the following structure of the exec-part:
It seems that this whole -amin 1 -o -amin 0 part doesn't work. What are those?
<?
echo "<body bgcolor=\"$bgcolor\" text=\"$text\" link=\"$link\" vlink=\"$vlink\" alink=\"$alink\">";
echo "<font face=\"$font\" size=\"$size\">
<table bgcolor=\"$bgcolor\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" bordercolor=\"$bordercolor\" bordercolorlight=\"$bordercolor\" bordercolordark=\"$bordercolor\">
<tr>
<td>
<font face=\"$font\" size=\"$size\" color=\"$color\"><b>Users in StratoChat</b>
</td>
</tr>";
----THIS IS THE PART I AM TALKING ABOUT-----
exec("find userlist/-amin 1 -o -amin 0",$retAr);
$numusers = sizeof($retAr);
for ($i=0;$i<$numusers;$i++)
if ($retAr[$i] != ""): echo "<tr><td><font face=\"$font\" size=\"$size\">".ereg_replace("userlist/","",$retAr[$i])."</td></tr>"; endif;
?>