Export MySQL table in CSV format using PHP
I recently had a project that I had to extract data from a MySQL database and produce a CSV file from it. Upon my search I found the following code to do just that....
HTML / PHP / Tutorials / Web Development / WordPress
Have you ever had a need to apply a shortcode inside a widget? Just add the following into your functions.php file within the theme, be sure to place this code inside your PHP code <?php and ?>:
1 2 |
/* Add Widget Shortcode Functionality */ add_filter('widget_text', 'do_shortcode'); |
...
More
Recent Comments