Partage
  • Partager sur Facebook
  • Partager sur Twitter

BD dans tableau html un peu d aide svp

afficher table db dans tableau html

    19 janvier 2021 à 9:23:59

    bonjour, je cherche a afficher une base de donnée sur ma page html mais je n'y arrive pas malgres les different tutos.

    voici mon code et merci d'avance

    <?php   
         
    $pdo = new PDO('mysql:host='localhost';dbname='vt', moi2, moi);
    $sql = 'SELECT * FROM articles';   
    $req = $pdo->query($sql);   
        
    ?>
    
    		<table class="table table-bordered">
     <caption>Articles</caption>
    <tr>
        <th><p class="text-error">Mois</p></th>
        <th><p class="text-error">Année</p></th>
        <th><p class="text-error">Nom</p></th>
        <th><p class="text-error">Resumé</p></th>
      <th><p class="text-error">Source</p></th>
      <th><p class="text-error">Lien</p></th>
      <th><p class="text-error">Intéret</p></th>
       
        </tr>
    <tr>
    
    	<? while($row = $req->fetch()) { ?>
            <td><? echo $row['Mois']; ?></td>
            <td><? echo $row['Années']; ?></td>
            <td><? echo $row['Nom']; ?></td>
            <td><? echo $row['Resumé']; ?></td>
            <td><? echo $row['Source']; ?></td>
            <td><? echo $row['Lien']; ?></td>
            <td><? echo $row['Interét']; ?></td>
    
        <td><? if ($row['verified'] == "0") { echo 'Membre'; } if ($row['verified'] == "1") { echo '<p class="text-warning"><strong>Modérateur</strong></p>'; } if ($row['verified'] == "2") { echo '<p class="text-error"><strong>Administrateur</strong></p>'; } ?></td>
        <td><? echo '<a class="btn btn-info" href="profil?user='.$row['username'].'">Voir le profil</a><br/>'; ?></td>
         
    </tr>
    <? }   
    $req->closeCursor();   
    ?>
    </table>
    </body>
    </html>



    • Partager sur Facebook
    • Partager sur Twitter
      19 janvier 2021 à 12:21:32

      Bonjour.

      Il faut revoir l'utilisation des variables en php.

      Il manque des ' autour du login et mdp de PDO

      Et tu en as trop dans le DSN regarde la doc

      • Partager sur Facebook
      • Partager sur Twitter

      BD dans tableau html un peu d aide svp

      × Après avoir cliqué sur "Répondre" vous serez invité à vous connecter pour que votre message soit publié.
      × Attention, ce sujet est très ancien. Le déterrer n'est pas forcément approprié. Nous te conseillons de créer un nouveau sujet pour poser ta question.
      • Editeur
      • Markdown