wpdb not working for me
-
This a test page, do not know what is wrong, new at this.
<!DOCTYPE html> <html> <head> Fetch data from table</head> </title> <body> <?php global $wpdb; $result = $wpdb->get_results( "SELECT ID, FirstName, LastName from AAUW_Members order by LastName limit 4 "); foreach($result as $row) { echo $row[0]; echo $row[1]; echo $row[2]; } ?> </body> </html>
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘wpdb not working for me’ is closed to new replies.