Title: [Plugin: WP-Table Reloaded] Adding values from external plugin
Last modified: August 20, 2016

---

# [Plugin: WP-Table Reloaded] Adding values from external plugin

 *  Resolved [HitchB](https://wordpress.org/support/users/hitchb/)
 * (@hitchb)
 * [14 years ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-adding-values-from-external-plugin/)
 * Hi,
 * Would like to have your support on how to add values I get from another plugin
   to a table post using your plugin.
    I’m using Quform Plugin which enables me 
   to create sophisticated forms to display on the front end, but I need to post
   the entries submitted in a post. Entries are collected in the back end normally
   but it’s possible to post the entries in a post.Just need to find a way to present
   them in a clean table using your wonderful plugin.
 * [http://wordpress.org/extend/plugins/wp-table-reloaded/](http://wordpress.org/extend/plugins/wp-table-reloaded/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [HitchB](https://wordpress.org/support/users/hitchb/)
 * (@hitchb)
 * [14 years ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-adding-values-from-external-plugin/#post-2787736)
 * This is the code used to post the values and it works. However I need to present
   them in a clean table.
 *     ```
       add_action('iphorm_post_process_2', 'mytheme_create_wp_post', 10, 1);
   
       function mytheme_create_wp_post($form)
   
       {
   
           $title = $form->getValue('iphorm_2_1'); // Unique ID field referring to the form.
   
       $content .= '<br>Country:<br />' . $form->getValue('iphorm_2_11'); // iphorm_x_x is the ID of the field.
   
       $content .= '<br>Location:<br />' . $form->getValue('iphorm_2_12');
   
       $content .= '<br>Company:<br />' . $form->getValue('iphorm_2_2');
   
       $content .= '<br>Website:<br />' . $form->getValue('iphorm_2_4');
   
       $content .= '<br>Category:<br />' . $form->getValue('iphorm_2_7');
   
       $content .= '<br>Description:<br />' . $form->getValue('iphorm_2_8');
   
       $content .= '<br>Expiry Date:<br />' . $form->getValue('iphorm_2_10');
   
           $post = array(
   
               'post_title' => $title,
   
               'post_content' => $content
   
           );
   
           wp_insert_post($post);
   
       }
       ```
   
 *  Plugin Author [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * (@tobiasbg)
 * [13 years, 12 months ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-adding-values-from-external-plugin/#post-2787842)
 * Hi,
 * thanks for your question.
 * You don’t really need my plugin for this, and I don’t see a way to use WP-Table
   Reloaded for this. Adding data from another plugin to a table in WP-Table Reloaded
   is not possible.
    To create a table, you will just have to re-format that code
   you have, so that it prints out HTML code for a table.
 * Regards,
    Tobias

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘[Plugin: WP-Table Reloaded] Adding values from external plugin’ is closed
to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-table-reloaded_f7dcd3.svg)
 * [WP-Table Reloaded](https://wordpress.org/plugins/wp-table-reloaded/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-table-reloaded/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-table-reloaded/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-table-reloaded/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-table-reloaded/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-table-reloaded/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [Tobias Bäthge](https://wordpress.org/support/users/tobiasbg/)
 * Last activity: [13 years, 12 months ago](https://wordpress.org/support/topic/plugin-wp-table-reloaded-adding-values-from-external-plugin/#post-2787842)
 * Status: resolved