bonjour à tous,
tout d'abord, étant donné que c'est mon premier post sur le forum, je vous dit à tous, bonjour
je m'occupe du developpement de pas mal de site internet, et là j'ai quelques soucis à afficher des données ...
voici le code :
Code :
- <table width="600" id="contenu" border="0" cellpadding="0" cellspacing="0"><form>
- <tr>
- <?php
- $req = mysql_query("SELECT * FROM produits WHERE topvente='1' ORDER BY id" )or die("Erreur MySQL: ".mysql_error($link));
-
- $i = 0;
- while($tab_prod = mysql_fetch_assoc($req)){
- $j = $i + 1 ;
- if($tab_prod->topvente==1)
- $chek_1 = "checked";
- else
- $chek_1 = "";
- if($tab_prod->topvente==0)
- $chek_2 = "checked";
- else
- $chek_2 = "";
- if($tab_prod->toppromo==1)
- $chek_3 = "checked";
- else
- $chek_3 = "";
- if($tab_prod->toppromo==0)
- $chek_4 = "checked";
- else
- $chek_4 = "";
- echo"
- <td>
- <table border='1'>
- <tr>
- <td><A HREF='../index.php?page=detail_produit&id=".$tab_prod['id']."' target='_blank'><img src='/php/vignettes/".$tab_prod['ref']."_H1.jpg' border='0' width='65' height='65'></a></td>
- </tr>
- <tr>
- <td>
- <label>Top Vente :</label><br />
- <input id='oui' type='radio' name='topvente' value='1' ".$chek_1.">
- <label for='oui' class='list'>oui</label><br />
- <input id='non' type='radio' name='topvente' value='0' ".$chek_2.">
- <label for='non' class='list'>non</label><br />
- <label>Top Promo :</label><br />
- <input id='oui' type='radio' name='toppromo' value='1' ".$chek_3.">
- <label for='oui' class='list'>oui</label><br />
- <input id='non' type='radio' name='toppromo' value='0' ".$chek_4.">
- <label for='non' class='list'>non</label>
- </td>
- </tr>
- </table>
- </td>";
- if (! ($j % 5))
- echo "</tr><tr>" ;
-
- $i++ ;
- }
- ?>
- </tr>
- <tr>
- <td colspan="3" align="center">
- <input type="submit" value="Valider les modifications" />
- </td>
- </tr>
- </form>
- </table>
|
tout se déroule correctement quant à l'affichage de tout mais produit , mais par contre, les boutons radios ne se remplissent pas en fonction des infos ...
si quelqu'un voit pourquoi ce serait gentil de m'aiguiller ...