Tag Archives: coding

Connecting to External Database in WordPress

This is possible to use the wpdb object to access any external database and query any table within your WordPress installation. You can even use all the wpdb classes and functions such as get_results. Example: $my_external_db = new wpdb(‘username’,’password’,’database’,’localhost’); $rows = $mydb->get_results(“SELECT * from MYTABLE “); foreach ($rows as $result) : echo $ result ->Title;

Continue Reading →

Javascript Change Font Size

We are working on a website with a dynamic font size functionality. Do you know that this so useful functionality costs only two lines of code? If you consider the need of people to see larger fonts on your website you can use JavaScript code crated by our web developer. Change Font Size with Javascript

Continue Reading →

Web Developer’s Journal: moving vBulletin forums to another server

Step by step instruction to move vBulletin forums from one server to another. 1. Use FTP or your hosts’ file manager to move all vBulletin files from one server to another. 2. Move database to new hosting. You can create a copy of vBulletin database by using vBulletin control panel for admin. 3. Open up

Continue Reading →

About The Author

Archives