How to display specific data from custom database table in WordPress?
Display specific data from custom database table in WordPress
<table border="2"> <tr> <th>ID</th> <th>Firstname</th> <th>Lastname</th> <th>Email</th> <th>Phone</th> <th>Message</th> </tr> <?php global $wpdb; $table_name = $wpdb->prefix . "my_plugintable"; $result = $wpdb->get_results ( "SELECT * FROM $table_name" ); foreach ( $result as $print ) { ?> <tr> <td><?php echo $print->id;?></td> <td><?php echo $print->firstname;?></td> <td><?php echo $print->lastname;?></td> <td><?php echo $print->email;?></td> <td><?php echo $print->phone;?></td> <td><?php echo $print->message;?></td> </tr> <?php } ?> </table>
POST COMMENTS