hello i would like to know if someone have already done a php site for listing mysql (also call dupechek)because my php script suck too mutch:
Code:
<?php
mysql_connect("......", ".....", "......");
mysql_select_db("ioFTPD");
$reponse = mysql_query("SELECT * FROM php_psio");
while ($donnees = mysql_fetch_array($reponse) )
{
?>
<table width="668" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutDefaultTable-->
<tr>
<td width="68" height="27" valign="top">
<?php
echo $donnees['rls'];
?>
</td>
</tr>
</table>
<?php
}
mysql_close();
?>