simogeo j'ai jamais tué de chats, ... | Hazel a écrit :
Bijour tout le monde.
Je voudrais que pour chaque enregistrement de ma table, une ligne de tableau soit créé histoire d'afficher proprement le listing
voici mon script, il ne marche pas d'ou vient le problème je ne sais pas... je suis unn gros n00b
<?php
// connexion à la base
$db = mysql_connect('localhost','hazel','';
// sélection de la base
mysql_select_db('mabase',$db);
// on écrit la requête
$sql = 'SELECT champ1,champ2,champ3,champ4,champ5,champ6 FROM inscrit';
// on envoie la requête
$req = mysql_query($sql) or die('Erreur SQL !'.$sql.'<br>'.mysql_error());
// on fait une boucle qui va faire un tour pour chaque enregistrements
while($data = mysql_fetch_array($req))
{
// on affiche les informations de l'enregistrements en cours et on créé une ligne au tableau
$html ="<table>
<tr>
<td>'.$data['champ1'].'</td>
<td>'.$data['champ2'].'</td>
<td>'.$data['champ3'].'</td>
<td>'.$data['champ4'].'</td>
<td>'.$data['champ5'].'</td>
<td>'.$data['champ6'].'</td>
</tr>
</table>";
}
echo ''.$html.'';
// fermeture de la connexion
mysql_close();
?>
j'ai déja fait une recherche sur le forum et les sites spécialisé mais j'ai pas trouver. Si quelqu'un à un tuto a me proposer ce serait sympa.
merci
VOUS
|
Code :
- <?php
- // connexion à la base
- $db = mysql_connect('localhost','hazel','');
- // sélection de la base
- mysql_select_db('mabase',$db);
- // on écrit la requête
- $sql = 'SELECT champ1,champ2,champ3,champ4,champ5,champ6 FROM inscrit';
- // on envoie la requête
- $req = mysql_query($sql) or die('Erreur SQL !'.$sql.'<br>'.mysql_error());
- // on fait une boucle qui va faire un tour pour chaque enregistrements
- while($data = mysql_fetch_array($req))
- {
- // on affiche les informations de l'enregistrements en cours et on créé une ligne au tableau
- $html ="<table>
- <tr>
- <td>'.$data['champ1'].'</td>
- <td>'.$data['champ2'].'</td>
- <td>'.$data['champ3'].'</td>
- <td>'.$data['champ4'].'</td>
- <td>'.$data['champ5'].'</td>
- <td>'.$data['champ6'].'</td>
- </tr>
- <tr>
- <td colspan=6><hr></td>
- </tr>
- </table>";
- }
- echo ''.$html.'';
- // fermeture de la connexion
- mysql_close();
- ?>
|
OU ( et c'est mieux)
EN CSS avec un border-bottom
---------------
from here and there -- \o__________________________________ -- la révolution de la terre, en silence
|