Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Data dari database tidak muncul di tabel di situs HTML

Pertama, Anda tidak perlu mengulanginclude("guestlist_connect.php");Dan Anda juga lupa untuk mengakhiri 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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Django AWS RDS MySQL Error:(2026, 'Kesalahan koneksi SSL:error:00000001:lib(0):func(0):reason(1)')

  2. SQL_NO_CACHE tidak berfungsi

  3. Mekanisme internal JDBC ResultSet untuk mengambil kumpulan data besar

  4. Hasilkan array PHP dari MySQL dengan nilai kunci dari kolom id

  5. Buat Cadangan Fisik dari MariaDB atau Database MySQL Anda