sql >> Database teknologi >  >> RDS >> Mysql

Data fra databasen vises ikke i tabellen på HTML-webstedet

For det første behøver du ikke at repeatinclude("guestlist_connect.php"); Og du har også glemt at afslutte while loop

<?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. Hvordan sammenkædes kolonner med Laravel 4 Eloquent?

  2. Dynamisk pivotforespørgsel ved hjælp af PostgreSQL 9.3

  3. EntityManager-undtagelseshåndtering i sessionsbean

  4. Hvordan får man SQL Server til at finde et login, der matcher det angivne navn?