03-02-2008, 11:28 PM
Coucou vite fait avant que mon pc portable s'éteigne (batterie -_-)
Code PHP :
<?php
while ($RequeteSQL = mysql_fetch_array($RequeteBasic) )
{
$passwd = $RequeteBasic['Password'];
$mail = $RequeteBasic['Email'];
$Sql_rand = $RequeteBasic['Rand'];
}
c'est pas plutot
Code PHP :
<?php
while ($RequeteSQL = mysql_fetch_array($RequeteBasic) )
{
$passwd = $RequeteSQL['Password'];
$mail = $RequeteSQL['Email'];
$Sql_rand = $RequeteSQL['Rand'];
}