I have created some tables within wordpress's database. The tables are updated daily with data from a csv file. Can someone show me how to get this custom data out of the database and on onto a page? Thanks.
I have created some tables within wordpress's database. The tables are updated daily with data from a csv file. Can someone show me how to get this custom data out of the database and on onto a page? Thanks.
Could look at using the wpdb_Class with something like this example:
$mydata = $wpdb->get_results("SELECT * FROM my_data_table WHERE my_ID=$whatever");I'll give that a shot and post back.
This topic has been closed to new replies.