Thread: psio help
View Single Post
Old 07-12-2006, 04:32 AM  
angelo
Junior Member
 
angelo's Avatar
 
Join Date: Jun 2006
Posts: 2
Default psio help

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'];
	?>
	&nbsp;</td>
      </tr>
</table>
<?php
}

mysql_close();
?>
angelo is offline   Reply With Quote