list database table rows plugin wordpress

Solutions on MaxInterview for list database table rows plugin wordpress by the best coders in the world

showing results for - "list database table rows plugin wordpress"
Mathis
27 Jul 2020
1//you have to use global wpdp variable and get_result function in your code page like this...
2global $wpdb;
3$row = $wpdb->get_results( "SELECT * FROM your_table_in_wordpress");
4    foreach ( $row as $row ) { 
5      echo "email:".$row->email;
6    } //$row->your_column_name in table