Affichage de questions php/mysql
Résolu/Fermé
squid3570
Messages postés
19
Date d'inscription
mardi 18 décembre 2007
Statut
Membre
Dernière intervention
12 novembre 2012
-
19 juil. 2008 à 19:19
squid3570 Messages postés 19 Date d'inscription mardi 18 décembre 2007 Statut Membre Dernière intervention 12 novembre 2012 - 24 juil. 2008 à 19:41
squid3570 Messages postés 19 Date d'inscription mardi 18 décembre 2007 Statut Membre Dernière intervention 12 novembre 2012 - 24 juil. 2008 à 19:41
A voir également:
- Affichage de questions php/mysql
- Easy php - Télécharger - Divers Web & Internet
- Affichage double ecran - Guide
- Mysql community server - Télécharger - Bases de données
- Comment agrandir l'affichage de l'écran - Guide
- Windows 11 affichage classique - Guide
2 réponses
Alain_42
Messages postés
5361
Date d'inscription
dimanche 3 février 2008
Statut
Membre
Dernière intervention
13 février 2017
894
19 juil. 2008 à 20:31
19 juil. 2008 à 20:31
Bonsoir,
essayes plutot avec mysql_fetch_array(
et d'ou venaient les $rs ??
je suppose que les noms des champs de ta tables sont: 'FQUESTIONS' etc...
@lain
essayes plutot avec mysql_fetch_array(
et d'ou venaient les $rs ??
je suppose que les noms des champs de ta tables sont: 'FQUESTIONS' etc...
<body> <table width="950"> <tr> <td> </td> </tr> </table> <table class="maint"> <tr> <td colspan="100%" height="450"> <form id="form1" name="form1" method="post" action="examsResults.php"> <table width="100%" height="1405" border="0" cellpadding="3" cellspacing="0"> <?php $server_conn = mysql_connect("localhost", "root", ""); $select_db = mysql_select_db("qpeople", $server_conn) or die (mysql_error()); $query = "SELECT * FROM english ORDER BY RAND() LIMIT 10"; $result = mysql_query($query) or die(mysql_error()); $i=1; while($ligne = mysql_fetch_array($result)){ ?> <tr> <td height="20" bgcolor="#A35252"><p style="color:#FFFFFF">Question <?php echo $i ?> </p></td> </tr> <tr> <td height="60" align="left" valign="top"> <?php echo $ligne['FQUESTIONS'];?> </td> </tr> <tr> <td height="140" align="left" valign="top"><p> <label> <input type="radio" name="<?php echo "RadioGroup".$i;?>" value="A" /> <?php echo $ligne['FANSWER_A'];?></label> <br /> <label> <input type="radio" name="<?php echo "RadioGroup".$i;?>" value="B" /> <?php echo $ligne['FANSWER_B'];?></label> <br /> <label> <input type="radio" name="<?php echo "RadioGroup".$i;?>" value="C" /> <?php echo $ligne['FANSWER_C'];?></label> <br /> <label> <input type="radio" name="<?php echo "RadioGroup".$i;?>" value="D" /> <?php echo $ligne['FANSWER_D'];?></label> <br /> </p></td> </tr> <?php $i++; } ?> <tr> </tr> <tr> <td height="10" align="center"><input type="submit" name="Submit" value="Submit" /></td> </tr> </table> </form></td> <td width="15%" height="1405" align="left" valign="top"><div id="RMarginDiv"></div></td> </tr> </table> </div></td> <td width="12%"> </td> </tr> </table> </td> </tr> <tr> <td colspan="100%"> <div id="bbar"> <center>|<a href="../index.html" class="bbar">Home</a>|<a href="../about.htm" class="bbar">About Us</a>|<a href="../register.htm" class="bbar">Register</a> |<a href="../info.htm" class="bbar">Contact Info</a>|<br> ©.</center> </div> </td> </tr> </table> </body>
@lain
squid3570
Messages postés
19
Date d'inscription
mardi 18 décembre 2007
Statut
Membre
Dernière intervention
12 novembre 2012
24 juil. 2008 à 19:41
24 juil. 2008 à 19:41
Merci ca marche !!!