Forum de discussion
Forum « Programmation PHP » (archives)
Pitit problème, gros soucis: relation table/fichier php
Envoyé: 22 novembre 2003, 5h52 par pitchoune
J'ai un pitit problème...
J'aimerai afficher des informations se trouvant dans une table d'une base de donnée à partir d'un fichier php...
Par exemple j'aimerai afficher la liste des clients avec leur nom, leur prénom et leur email...mon code php est:
$SQL_clients="select * from 'clients' order by 'nom' asc";
mysql_query($SQL_clients);
if ($RS_clients!=NULL)
{
while($row=mysql_fetch_array)
{
?>
<td width="200"> <a class="b12"><? echo $RS_clients["nom"]; ?></a></td>
<td width="200"> <a class="b12"><? echo $RS_clients["prenom"]; ?></a></td>
<td width="300"><a class="b12"><? echo $RS_clients["email"]; ?></a></td>
<td width="30"><a href="./a_clients_modify.php?id=<? echo $RS_clients["id"]; ?>" target="_top"><img border="0" src="./interface/modifier.gif" alt="Modifier"></a></td>
<td width="30"><a href="./a_clients_delete.php?id=<? echo $RS_clients["id"]; ?>" target="_top"><img border="0" src="./interface/supprimer.gif" alt="Supprimer"></a></td>
</tr>
<?
mais je pense kil doit manquer kelke chose vu ke ça n'affiche rien!
Kelkun peut-il m'aider s'il vous plait...
Réponses
|