Title: Michael Simpson's Replies | WordPress.org

---

# Michael Simpson

  [  ](https://wordpress.org/support/users/msimpson/)

 *   [Profile](https://wordpress.org/support/users/msimpson/)
 *   [Topics Started](https://wordpress.org/support/users/msimpson/topics/)
 *   [Replies Created](https://wordpress.org/support/users/msimpson/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/msimpson/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/msimpson/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/msimpson/engagements/)
 *   [Favorites](https://wordpress.org/support/users/msimpson/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 4,032 total)

1 [2](https://wordpress.org/support/users/msimpson/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/msimpson/replies/page/3/?output_format=md)…
[267](https://wordpress.org/support/users/msimpson/replies/page/267/?output_format=md)
[268](https://wordpress.org/support/users/msimpson/replies/page/268/?output_format=md)
[269](https://wordpress.org/support/users/msimpson/replies/page/269/?output_format=md)
[→](https://wordpress.org/support/users/msimpson/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form DB] Can I NOT save data from one of my forms?](https://wordpress.org/support/topic/can-i-not-save-data-from-one-of-my-forms/)
 *  Plugin Author [Michael Simpson](https://wordpress.org/support/users/msimpson/)
 * (@msimpson)
 * [2 years, 7 months ago](https://wordpress.org/support/topic/can-i-not-save-data-from-one-of-my-forms/#post-17063154)
 * Yes, look under CMDB Options, Saving
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form DB] CF7DBPlugin.php:848 error](https://wordpress.org/support/topic/cf7dbplugin-php848-error/)
 *  Plugin Author [Michael Simpson](https://wordpress.org/support/users/msimpson/)
 * (@msimpson)
 * [2 years, 11 months ago](https://wordpress.org/support/topic/cf7dbplugin-php848-error/#post-16822754)
 * I think the issues is that your version of the plugin is outdated and this line
   is not compatible with more recent versions of PHP. Check that you have version
   2.10.37. If not download from GitHub: [https://github.com/mdsimpson/contact-form-7-to-database-extension/releases](https://github.com/mdsimpson/contact-form-7-to-database-extension/releases)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form DB] Show data from another table.](https://wordpress.org/support/topic/show-data-from-another-table/)
 *  Plugin Author [Michael Simpson](https://wordpress.org/support/users/msimpson/)
 * (@msimpson)
 * [4 years ago](https://wordpress.org/support/topic/show-data-from-another-table/#post-15580126)
 * I think you might need to code it this way:
 *     ```
       require_once(ABSPATH . 'wp-content/plugins/contact-form-7-to-database-extension/CFDBFormIterator.php');
   
       $exp = new CFDBFormIterator();
       $exp->export('Table1', $atts);
       while ($row = $exp->nextRow()) {
           $exp2 = new CFDBFormIterator();
           $exp2->export('Table2', $atts);
           while ($row2 = $exp2->nextRow()) {
               if ($row2['id'] === $row['id']){
                   printf('%s', $row2['quantity']);
               }
           }
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form DB] Sender email address not appearing in forwarded email](https://wordpress.org/support/topic/sender-email-address-not-appearing-in-forwarded-email/)
 *  Plugin Author [Michael Simpson](https://wordpress.org/support/users/msimpson/)
 * (@msimpson)
 * [6 years, 11 months ago](https://wordpress.org/support/topic/sender-email-address-not-appearing-in-forwarded-email/#post-11597868)
 * CFDB does not handle email. That is handled by the form plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form DB] wp_cf7dbplugin_submits table primary key](https://wordpress.org/support/topic/wp_cf7dbplugin_submits-table-primary-key-2/)
 *  Plugin Author [Michael Simpson](https://wordpress.org/support/users/msimpson/)
 * (@msimpson)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/wp_cf7dbplugin_submits-table-primary-key-2/#post-11260243)
 * The table does not / should not have a primary key
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form DB] Editor Problem](https://wordpress.org/support/topic/editor-problem-6/)
 *  Plugin Author [Michael Simpson](https://wordpress.org/support/users/msimpson/)
 * (@msimpson)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/editor-problem-6/#post-10584308)
 * Try uninstalling CFDB and re-install from a download from [https://github.com/mdsimpson/contact-form-7-to-database-extension/releases](https://github.com/mdsimpson/contact-form-7-to-database-extension/releases)
 * If you downloaded it from the main GitHub page, it puts the plugin in a directory
   of a different name then the editor cannot see it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Add Shortcodes Actions And Filters] Is this plugin still in development or is there an alternative?](https://wordpress.org/support/topic/is-this-plugin-still-in-development-or-is-there-an-alternative/)
 *  Plugin Author [Michael Simpson](https://wordpress.org/support/users/msimpson/)
 * (@msimpson)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/is-this-plugin-still-in-development-or-is-there-an-alternative/#post-10555251)
 * My mistake, I thought this was referring to one of my other plugins.
 * I am not actively adding to this plugin (Add Shotcodes Actions and Filters) but
   I will address problems if they arise.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Add Shortcodes Actions And Filters] Is this plugin still in development or is there an alternative?](https://wordpress.org/support/topic/is-this-plugin-still-in-development-or-is-there-an-alternative/)
 *  Plugin Author [Michael Simpson](https://wordpress.org/support/users/msimpson/)
 * (@msimpson)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/is-this-plugin-still-in-development-or-is-there-an-alternative/#post-10546489)
 * Latest versions are now on GitHub. See [https://cfdbplugin.com/](https://cfdbplugin.com/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form DB] Not being updated?](https://wordpress.org/support/topic/not-being-updated-3/)
 *  Plugin Author [Michael Simpson](https://wordpress.org/support/users/msimpson/)
 * (@msimpson)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/not-being-updated-3/#post-10499099)
 * That editor extension is a not-free extension of CFDB that adds editing capability.
   Updated to that are here: [https://cfdbplugin.com/?page_id=939](https://cfdbplugin.com/?page_id=939)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form DB] Not being updated?](https://wordpress.org/support/topic/not-being-updated-3/)
 *  Plugin Author [Michael Simpson](https://wordpress.org/support/users/msimpson/)
 * (@msimpson)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/not-being-updated-3/#post-10490676)
 * The plugin updates are now available GitHub instead of WordPress.com
    Be sure
   to install the GitHub updater plugin as well. See: [https://cfdbplugin.com/](https://cfdbplugin.com/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form DB] Uploaded CSV, now need a form](https://wordpress.org/support/topic/uploaded-csv-now-need-a-form/)
 *  Plugin Author [Michael Simpson](https://wordpress.org/support/users/msimpson/)
 * (@msimpson)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/uploaded-csv-now-need-a-form/#post-10437388)
 * Unfortunately no. You will have to manually create it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form DB] CFDB Search form shows all entries](https://wordpress.org/support/topic/cfdb-search-form-shows-all-entries/)
 *  Plugin Author [Michael Simpson](https://wordpress.org/support/users/msimpson/)
 * (@msimpson)
 * [7 years, 12 months ago](https://wordpress.org/support/topic/cfdb-search-form-shows-all-entries/#post-10306304)
 * [https://cfdbplugin.com/?page_id=680](https://cfdbplugin.com/?page_id=680)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form DB] Edit Data Mode won’t work](https://wordpress.org/support/topic/edit-data-mode-wont-work/)
 *  Plugin Author [Michael Simpson](https://wordpress.org/support/users/msimpson/)
 * (@msimpson)
 * [8 years ago](https://wordpress.org/support/topic/edit-data-mode-wont-work/#post-10280214)
 * Uninstall CFDB and install it form a prepared release distro: [https://github.com/mdsimpson/contact-form-7-to-database-extension/releases](https://github.com/mdsimpson/contact-form-7-to-database-extension/releases)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form DB] Contact Form 7 to Database Extension 2.10.32 – CSV Injection](https://wordpress.org/support/topic/contact-form-db-2-8-13-2-x-cross-site-scripting-xss/)
 *  Plugin Author [Michael Simpson](https://wordpress.org/support/users/msimpson/)
 * (@msimpson)
 * [8 years ago](https://wordpress.org/support/topic/contact-form-db-2-8-13-2-x-cross-site-scripting-xss/#post-10198221)
 * Fix added in latest version
    [https://github.com/mdsimpson/contact-form-7-to-database-extension/releases/tag/2.10.36](https://github.com/mdsimpson/contact-form-7-to-database-extension/releases/tag/2.10.36)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Add Shortcodes Actions And Filters] The closed thread: shortcode inside shortcode](https://wordpress.org/support/topic/the-closed-thread-shortcode-inside-shortcode/)
 *  Plugin Author [Michael Simpson](https://wordpress.org/support/users/msimpson/)
 * (@msimpson)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/the-closed-thread-shortcode-inside-shortcode/#post-9838558)
 * Given that you have a shortcode, in its PHP code, you can call another shortcode
   like this:
 * `do_shortcode('[some_other_shortcode]');`

Viewing 15 replies - 1 through 15 (of 4,032 total)

1 [2](https://wordpress.org/support/users/msimpson/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/msimpson/replies/page/3/?output_format=md)…
[267](https://wordpress.org/support/users/msimpson/replies/page/267/?output_format=md)
[268](https://wordpress.org/support/users/msimpson/replies/page/268/?output_format=md)
[269](https://wordpress.org/support/users/msimpson/replies/page/269/?output_format=md)
[→](https://wordpress.org/support/users/msimpson/replies/page/2/?output_format=md)