Php msql aléatoire
Fermé
francois59510
Messages postés
18
Date d'inscription
mercredi 16 mars 2011
Statut
Membre
Dernière intervention
11 juin 2011
-
16 mars 2011 à 13:01
francois59510 Messages postés 18 Date d'inscription mercredi 16 mars 2011 Statut Membre Dernière intervention 11 juin 2011 - 16 mars 2011 à 17:09
francois59510 Messages postés 18 Date d'inscription mercredi 16 mars 2011 Statut Membre Dernière intervention 11 juin 2011 - 16 mars 2011 à 17:09
A voir également:
- Php msql aléatoire
- Easy php - Télécharger - Divers Web & Internet
- Tirage au sort excel aléatoire sans doublon ✓ - Forum Excel
- Php natif - Forum PHP
- Get_magic_quotes_gpc php 8 ✓ - Forum PHP
- Formule "alea entre bornes" sans doublon. - Forum Excel
1 réponse
Reivax962
Messages postés
3672
Date d'inscription
jeudi 16 juin 2005
Statut
Membre
Dernière intervention
11 février 2021
1 011
16 mars 2011 à 14:14
16 mars 2011 à 14:14
Bonjour,
Tu peux utiliser une fonction aléatoire :
Xavier
Tu peux utiliser une fonction aléatoire :
<div id="corp"> <?php include('connexion.inc'); ?> <?php $reponse= $bdd->query('SELECT * FROM voc_anglais_oliver'); ?> <table> <tr> <td><strong>Anglais:</strong></td> <td><strong>Français:</strong></td> </tr> </table> <?php while ($donnees = $reponse->fetch()) { $anglais = (mt_rand(0, 1) == 0); ?> <table> <tr> <td><?php echo ($anglais) ? $donnees['anglais'] : ''; ?></td> <td><?php echo ($anglais) ? '' : $donnees['francais']; ?></td> </tr> </table> <?php } $reponse->closeCursor(); ?> </div>
Xavier
16 mars 2011 à 17:09