<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Royal Deer Design &#187; coding</title>
	<atom:link href="https://www.royaldeerdesign.com/tag/coding/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.royaldeerdesign.com</link>
	<description>Web Design Company</description>
	<lastBuildDate>Thu, 21 Aug 2025 15:08:29 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Connecting to External Database in WordPress</title>
		<link>https://www.royaldeerdesign.com/2012/01/connecting-to-external-database-in-wordpress/</link>
		<comments>https://www.royaldeerdesign.com/2012/01/connecting-to-external-database-in-wordpress/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 13:14:09 +0000</pubDate>
		<dc:creator><![CDATA[Sheuli]]></dc:creator>
				<category><![CDATA[Internet Business Tips]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://coot.arvixe.com/~royald/?p=1299</guid>
		<description><![CDATA[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(&#8216;username&#8217;,&#8217;password&#8217;,&#8217;database&#8217;,&#8217;localhost&#8217;); $rows = $mydb->get_results(&#8220;SELECT * from MYTABLE &#8220;); foreach ($rows as $result) : echo $ result ->Title;]]></description>
				<content:encoded><![CDATA[<p>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.</p>
<p><strong>Example:</strong></p>
<p>$my_external_db = new wpdb(&#8216;username&#8217;,&#8217;password&#8217;,&#8217;database&#8217;,&#8217;localhost&#8217;);</p>
<p>$rows = $mydb->get_results(&#8220;SELECT * from MYTABLE &#8220;);</p>
<p>foreach ($rows as $result) :</p>
<p>echo $ result ->Title;</p>
<p>endforeach;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.royaldeerdesign.com/2012/01/connecting-to-external-database-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Change Font Size</title>
		<link>https://www.royaldeerdesign.com/2010/06/javascript-change-font-size/</link>
		<comments>https://www.royaldeerdesign.com/2010/06/javascript-change-font-size/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 15:27:50 +0000</pubDate>
		<dc:creator><![CDATA[Sheuli]]></dc:creator>
				<category><![CDATA[Internet Business News]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[web developer]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://coot.arvixe.com/~royald/?p=2175</guid>
		<description><![CDATA[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]]></description>
				<content:encoded><![CDATA[<p>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.</p>
<p>Change Font Size with Javascript Ready to use code:</p>
<p><script type="text/javascript">
<!--

function changeFontSize(multiply)
{
if (document.body.style.fontSize == "") document.body.style.fontSize = "1.0em";
document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (multiply * 0.2) + "em";
}

-->
</script> </p>
<p><a href="javascript:void(0);" onclick="changeFontSize(1)">+A</a><br />
<a href="javascript:void(0);" onclick="changeFontSize(-1)">-A </a></p>
<p>You can use this code on your website, just copy the code and past it into your document. </p>
]]></content:encoded>
			<wfw:commentRss>https://www.royaldeerdesign.com/2010/06/javascript-change-font-size/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Developer&#8217;s Journal: moving vBulletin forums to another server</title>
		<link>https://www.royaldeerdesign.com/2010/04/web-developers-journal-moving-vbulletin-forums-to-another-server/</link>
		<comments>https://www.royaldeerdesign.com/2010/04/web-developers-journal-moving-vbulletin-forums-to-another-server/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 12:33:25 +0000</pubDate>
		<dc:creator><![CDATA[Sheuli]]></dc:creator>
				<category><![CDATA[Internet Business Tips]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[forums]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[vBulletin]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[web developer]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://coot.arvixe.com/~royald/?p=2345</guid>
		<description><![CDATA[Step by step instruction to move vBulletin forums from one server to another. 1. Use FTP or your hosts&#8217; 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]]></description>
				<content:encoded><![CDATA[<p>Step by step instruction to move vBulletin forums from one server to another.</p>
<p>1. Use FTP or your hosts&#8217; file manager to move all vBulletin files from one server to another.</p>
<p>2. Move database to new hosting. You can create a copy of vBulletin database by using vBulletin control panel for admin.</p>
<p>3. Open up includes/config.php and edit variables:</p>
<p>$config[&#8216;MasterServer&#8217;][&#8216;servername&#8217;],<br />
$config[&#8216;MasterServer&#8217;][&#8216;username&#8217;],<br />
$config[&#8216;MasterServer&#8217;][&#8216;password&#8217;],<br />
$config[&#8216;Database&#8217;][&#8216;dbname&#8217;].</p>
<p>More detailed instruction you can find at vbulletin.com /&#8230;. </p>
]]></content:encoded>
			<wfw:commentRss>https://www.royaldeerdesign.com/2010/04/web-developers-journal-moving-vbulletin-forums-to-another-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
