Is it possible to create a page and use $wpdb to retreive the data from the tables wp_iphorm_form_entry_data, wp_iphorm_forms and wp_iphorm_form_entries. I’m using this simple code and it’s not working;
<?php global $wpdb;
$result = $wpdb->get_results ( ” SELECT * FROM $wpdb->wp_iphorm_forms ” ); if ($result) { foreach ( $result as $page ) { echo ‘num is ‘. $page->id.'<br/>’; } } else { echo ‘Not found’; } ?>