sql >> Database >  >> RDS >> Mysql

Gegevens uit database verschijnen niet in tabel op HTML-site

Ten eerste hoef je niet te herhaleninclude("guestlist_connect.php");En je bent ook vergeten de while-lus te beëindigen

  <?php 
    include("guestlist.php");
     include("guestlist_connect.php"); 
    ?> 
    /*invites.HTML*/ 
    <h2 >Invites & Guest List</h2> 
    <table border="2"> 
    <thead> 
    <tr> 
    <th>First Name</th> 
    <th>Last Name</th> 
    <th>Contact</th> 
    <th>Invitation</th> 
    </tr> 
    </thead> <tbody> 
    <?php 
    $result = mysql_query("SELECT * FROM guestlist"); 
    while( $row = mysql_fetch_assoc( $result ) ){ ?> 
    <tr> 
    <td><? php echo $row["fname"]; ?></td> 
    <td><? php echo $row["lname"]; ?></td> 
    <td><? php echo $row["email"]; ?></td> 
    <td><? php echo $row["contact"]; ?></td> 
    </tr>
     <?php } ?> // you forgot to end a while loop
    </tbody> </table> 
    <?php mysql_close($connector); ?> 
    </div><!--End Rightcontainer--> </div>



  1. Hoe datum opslaan in MySQL-database?

  2. Query uitvoeren op PostgreSQL met Npgsql en Entity Framework met unaccent

  3. mysql full-text zoekfout

  4. Hoe meerdere duplicaten met verschillende waarden in dezelfde tabel bij te werken?