test

€ 2.031,00

Doel behaald
global $wpdb; // this adds the prefix which is set by the user upon instillation of wordpress $table_name = $wpdb->prefix . “your_table_name”; // this will get the data from your table $retrieve_data = $wpdb->get_results( “SELECT * FROM $table_name” ); ?>
    foreach ($retrieve_data as $retrieved_data){ ?>
  • column_name;?>
  • another_column_name;?>
  • as_many_columns_as_you_have;?>