<?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>Renowned Media</title>
	<atom:link href="http://renownedmedia.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://renownedmedia.com/blog</link>
	<description>Web Development Company</description>
	<lastBuildDate>Fri, 12 Mar 2010 02:59:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Read GET URL variables using JavaScript</title>
		<link>http://renownedmedia.com/blog/read-get-url-variables-using-javascript/</link>
		<comments>http://renownedmedia.com/blog/read-get-url-variables-using-javascript/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 21:30:50 +0000</pubDate>
		<dc:creator>Thomas Hunter</dc:creator>
				<category><![CDATA[Javascript Tutorials]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://renownedmedia.com/blog/?p=646</guid>
		<description><![CDATA[Here is a function which will either build an associative array of the GET URL variables on the current page, or return the value of a specified GET variable in JavaScript:
function getUrlVar(requestedKey) {
	var vars = [], hash;
	var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&#038;');

	for (var i = 0; i < hashes.length; i++) {
		hash = hashes[i].split('=');
		vars.push(hash[0]);
		vars[hash[0]] = hash[1];
	}
	if [...]


Related posts:<ol><li><a href='http://renownedmedia.com/blog/clean-url-generator-in-javascript/' rel='bookmark' title='Permanent Link: Clean URL Generator in Javascript'>Clean URL Generator in Javascript</a> <small>This function generates clean URL&#8217;s, similar to how Wordpress generates...</small></li></ol>]]></description>
		<wfw:commentRss>http://renownedmedia.com/blog/read-get-url-variables-using-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Certified Engineer (ZCE) Study Guide Links</title>
		<link>http://renownedmedia.com/blog/zend-certified-engineer-zce-study-guide-links/</link>
		<comments>http://renownedmedia.com/blog/zend-certified-engineer-zce-study-guide-links/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 01:08:17 +0000</pubDate>
		<dc:creator>Thomas Hunter</dc:creator>
				<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://renownedmedia.com/blog/?p=637</guid>
		<description><![CDATA[Since I will be taking the ZCE exam in four days, I figured I&#8217;d post a study guide for the world while doing last minute studying. Enjoy!
PHP Basics

Syntax &#124; WikiPedia
Operators &#124; W3Schools
Variables &#124; Further Reading
Constants &#124; Official Reading
Control Structures &#124; Official Reading
Language Constructs and Functions &#124; Further Reading

Object Oriented Programming

Instantiation &#8211; $classInstance = New classname; [...]


Related posts:<ol><li><a href='http://renownedmedia.com/blog/accessing-codeigniter-session-data-using-external-scripts/' rel='bookmark' title='Permanent Link: Accessing CodeIgniter Session Data using External Scripts'>Accessing CodeIgniter Session Data using External Scripts</a> <small>For a project we&#8217;re working on, we have the need...</small></li></ol>]]></description>
		<wfw:commentRss>http://renownedmedia.com/blog/zend-certified-engineer-zce-study-guide-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP cURL Replacement</title>
		<link>http://renownedmedia.com/blog/php-curl-replacement/</link>
		<comments>http://renownedmedia.com/blog/php-curl-replacement/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 21:30:02 +0000</pubDate>
		<dc:creator>Thomas Hunter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://renownedmedia.com/blog/?p=634</guid>
		<description><![CDATA[If you are a PHP developer who writes a lot of software which needs to be executed in many different shared hosts, it can often be frustrating when certain hosts don&#8217;t offer all of the functionality your applications require, specificially the cURL libraries.
I&#8217;ve seen these missing on several hosts, either for security reasons or for [...]


Related posts:<ol><li><a href='http://renownedmedia.com/blog/php-curl-cookies-not-saving-on-windows/' rel='bookmark' title='Permanent Link: PHP cURL cookies not saving on Windows'>PHP cURL cookies not saving on Windows</a> <small>I was recently given a PHP application with the task...</small></li><li><a href='http://renownedmedia.com/blog/random-session-timeouts-on-mediatemple/' rel='bookmark' title='Permanent Link: Random Session Timeouts on MediaTemple'>Random Session Timeouts on MediaTemple</a> <small> How to change your php.ini settings on your MediaTemple...</small></li><li><a href='http://renownedmedia.com/blog/codeigniter-htaccess-for-mediatemple/' rel='bookmark' title='Permanent Link: CodeIgniter .htaccess for MediaTemple'>CodeIgniter .htaccess for MediaTemple</a> <small> A few tweaks need to be made to CodeIgniter...</small></li></ol>]]></description>
		<wfw:commentRss>http://renownedmedia.com/blog/php-curl-replacement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flash not loading data from external domains</title>
		<link>http://renownedmedia.com/blog/flash-not-loading-data-from-external-domains/</link>
		<comments>http://renownedmedia.com/blog/flash-not-loading-data-from-external-domains/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 01:36:54 +0000</pubDate>
		<dc:creator>Thomas Hunter</dc:creator>
				<category><![CDATA[Flash Tutorials]]></category>

		<guid isPermaLink="false">http://renownedmedia.com/blog/?p=632</guid>
		<description><![CDATA[Are you having issues loading files from external domains to be used on a separate domain? Adobe changed the way flash works about two versions ago and introduced stricter security settings, specifically the use of crossdomain.xml files. Unlike AJAX XHR requests which allow no cross domain communications, flash allows the use of this security file which blacklists and whitelists external domains.


Related posts:<ol><li><a href='http://renownedmedia.com/blog/accessing-codeigniter-session-data-using-external-scripts/' rel='bookmark' title='Permanent Link: Accessing CodeIgniter Session Data using External Scripts'>Accessing CodeIgniter Session Data using External Scripts</a> <small>For a project we&#8217;re working on, we have the need...</small></li><li><a href='http://renownedmedia.com/blog/enabling-file_get_contents-and-fopen-with-remote-urls-on-mediatemple/' rel='bookmark' title='Permanent Link: Enabling file_get_contents() and fopen() With Remote URL&#8217;s on MediaTemple'>Enabling file_get_contents() and fopen() With Remote URL&#8217;s on MediaTemple</a> <small> How to enable access to remote files on MediaTemple...</small></li></ol>]]></description>
		<wfw:commentRss>http://renownedmedia.com/blog/flash-not-loading-data-from-external-domains/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chinese Characters not displaying in Internet Explorer 8</title>
		<link>http://renownedmedia.com/blog/chinese-characters-not-displaying-in-internet-explorer-8/</link>
		<comments>http://renownedmedia.com/blog/chinese-characters-not-displaying-in-internet-explorer-8/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 14:56:36 +0000</pubDate>
		<dc:creator>Thomas Hunter</dc:creator>
				<category><![CDATA[HTML Tutorials]]></category>

		<guid isPermaLink="false">http://renownedmedia.com/blog/?p=630</guid>
		<description><![CDATA[How to get foreign characters, including Japanese, Chinese, and other high unicode characters, to display properly in Internet Explorer 8.


Related posts:<ol><li><a href='http://renownedmedia.com/blog/javascript-and-unicode-characters/' rel='bookmark' title='Permanent Link: JavaScript and Unicode Characters'>JavaScript and Unicode Characters</a> <small>Today was spent adding a jQuery dropdown feature to a...</small></li><li><a href='http://renownedmedia.com/blog/css-box-model-differences-in-firefox-and-internet-explorer/' rel='bookmark' title='Permanent Link: CSS Box Model differences in Firefox and Internet Explorer'>CSS Box Model differences in Firefox and Internet Explorer</a> <small>Problem: Here is the bane of web developers existence, Internet...</small></li><li><a href='http://renownedmedia.com/blog/firefox-web-developer-toolbar-equivalent-for-internet-explorer/' rel='bookmark' title='Permanent Link: Firefox Web Developer Toolbar Equivalent for Internet Explorer'>Firefox Web Developer Toolbar Equivalent for Internet Explorer</a> <small>I recently found this tool for the Internet Explorer 7,...</small></li></ol>]]></description>
		<wfw:commentRss>http://renownedmedia.com/blog/chinese-characters-not-displaying-in-internet-explorer-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Accessing CodeIgniter Session Data using External Scripts</title>
		<link>http://renownedmedia.com/blog/accessing-codeigniter-session-data-using-external-scripts/</link>
		<comments>http://renownedmedia.com/blog/accessing-codeigniter-session-data-using-external-scripts/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 22:50:46 +0000</pubDate>
		<dc:creator>Thomas Hunter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CodeIgniter]]></category>

		<guid isPermaLink="false">http://renownedmedia.com/blog/?p=625</guid>
		<description><![CDATA[For a project we&#8217;re working on, we have the need to access CodeIgniter session data outside of our CI installation, more specifically for a WordPress installation. CodeIgniter, as most developers should already know, stores it&#8217;s session data in a database and uses a cookie to refer to the data, as opposed to storing this data [...]


Related posts:<ol><li><a href='http://renownedmedia.com/blog/random-session-timeouts-on-mediatemple/' rel='bookmark' title='Permanent Link: Random Session Timeouts on MediaTemple'>Random Session Timeouts on MediaTemple</a> <small> How to change your php.ini settings on your MediaTemple...</small></li><li><a href='http://renownedmedia.com/blog/flash-not-loading-data-from-external-domains/' rel='bookmark' title='Permanent Link: Flash not loading data from external domains'>Flash not loading data from external domains</a> <small>Are you having issues loading files from external domains to...</small></li><li><a href='http://renownedmedia.com/blog/codeigniter-user-authentication-model/' rel='bookmark' title='Permanent Link: CodeIgniter User Authentication Model'>CodeIgniter User Authentication Model</a> <small>Here is the source code for our user authentication model...</small></li></ol>]]></description>
		<wfw:commentRss>http://renownedmedia.com/blog/accessing-codeigniter-session-data-using-external-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Web Developer Toolbar Equivalent for Internet Explorer</title>
		<link>http://renownedmedia.com/blog/firefox-web-developer-toolbar-equivalent-for-internet-explorer/</link>
		<comments>http://renownedmedia.com/blog/firefox-web-developer-toolbar-equivalent-for-internet-explorer/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 20:05:47 +0000</pubDate>
		<dc:creator>Thomas Hunter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://renownedmedia.com/blog/?p=623</guid>
		<description><![CDATA[I recently found this tool for the Internet Explorer 7, which behaves like a mashup between the two Firefox tools, Web Developer Toolbar and Firebug. It doesn&#8217;t appear to be as powerful as the two, but it does provide a nice amount of web developing goodies for the browser.
Do you have Internet Explorer 8 installed? [...]


Related posts:<ol><li><a href='http://renownedmedia.com/blog/css-box-model-differences-in-firefox-and-internet-explorer/' rel='bookmark' title='Permanent Link: CSS Box Model differences in Firefox and Internet Explorer'>CSS Box Model differences in Firefox and Internet Explorer</a> <small>Problem: Here is the bane of web developers existence, Internet...</small></li><li><a href='http://renownedmedia.com/blog/playsushi-textlinks-firefox-uninstall/' rel='bookmark' title='Permanent Link: PlaySushi TextLinks firefox uninstall'>PlaySushi TextLinks firefox uninstall</a> <small>Do you have a Firefox Add-on called &#8220;PlaySushi TextLinks 1.0.0&#8243;...</small></li><li><a href='http://renownedmedia.com/blog/chinese-characters-not-displaying-in-internet-explorer-8/' rel='bookmark' title='Permanent Link: Chinese Characters not displaying in Internet Explorer 8'>Chinese Characters not displaying in Internet Explorer 8</a> <small>How to get foreign characters, including Japanese, Chinese, and other...</small></li></ol>]]></description>
		<wfw:commentRss>http://renownedmedia.com/blog/firefox-web-developer-toolbar-equivalent-for-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Random Session Timeouts on MediaTemple</title>
		<link>http://renownedmedia.com/blog/random-session-timeouts-on-mediatemple/</link>
		<comments>http://renownedmedia.com/blog/random-session-timeouts-on-mediatemple/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 00:03:49 +0000</pubDate>
		<dc:creator>Thomas Hunter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[MediaTemple]]></category>

		<guid isPermaLink="false">http://renownedmedia.com/blog/?p=621</guid>
		<description><![CDATA[<img src="http://renownedmedia.com/blog/files/mediatemple.png" />
How to change your php.ini settings on your MediaTemple account to prevent your sessions from randomly expiring.


Related posts:<ol><li><a href='http://renownedmedia.com/blog/using-tortoisesvn-with-mediatemple-subversion/' rel='bookmark' title='Permanent Link: Using TortoiseSVN with MediaTemple Subversion'>Using TortoiseSVN with MediaTemple Subversion</a> <small> Article on how to configure your TortoiseSVN client to...</small></li><li><a href='http://renownedmedia.com/blog/enabling-file_get_contents-and-fopen-with-remote-urls-on-mediatemple/' rel='bookmark' title='Permanent Link: Enabling file_get_contents() and fopen() With Remote URL&#8217;s on MediaTemple'>Enabling file_get_contents() and fopen() With Remote URL&#8217;s on MediaTemple</a> <small> How to enable access to remote files on MediaTemple...</small></li><li><a href='http://renownedmedia.com/blog/codeigniter-htaccess-for-mediatemple/' rel='bookmark' title='Permanent Link: CodeIgniter .htaccess for MediaTemple'>CodeIgniter .htaccess for MediaTemple</a> <small> A few tweaks need to be made to CodeIgniter...</small></li></ol>]]></description>
		<wfw:commentRss>http://renownedmedia.com/blog/random-session-timeouts-on-mediatemple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using TortoiseSVN with MediaTemple Subversion</title>
		<link>http://renownedmedia.com/blog/using-tortoisesvn-with-mediatemple-subversion/</link>
		<comments>http://renownedmedia.com/blog/using-tortoisesvn-with-mediatemple-subversion/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 05:08:01 +0000</pubDate>
		<dc:creator>Thomas Hunter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[MediaTemple]]></category>

		<guid isPermaLink="false">http://renownedmedia.com/blog/?p=618</guid>
		<description><![CDATA[<img src="http://renownedmedia.com/blog/files/mediatemple.png" />
Article on how to configure your TortoiseSVN client to access MediaTemple's subversion repositories.


Related posts:<ol><li><a href='http://renownedmedia.com/blog/random-session-timeouts-on-mediatemple/' rel='bookmark' title='Permanent Link: Random Session Timeouts on MediaTemple'>Random Session Timeouts on MediaTemple</a> <small> How to change your php.ini settings on your MediaTemple...</small></li><li><a href='http://renownedmedia.com/blog/codeigniter-htaccess-for-mediatemple/' rel='bookmark' title='Permanent Link: CodeIgniter .htaccess for MediaTemple'>CodeIgniter .htaccess for MediaTemple</a> <small> A few tweaks need to be made to CodeIgniter...</small></li><li><a href='http://renownedmedia.com/blog/enabling-file_get_contents-and-fopen-with-remote-urls-on-mediatemple/' rel='bookmark' title='Permanent Link: Enabling file_get_contents() and fopen() With Remote URL&#8217;s on MediaTemple'>Enabling file_get_contents() and fopen() With Remote URL&#8217;s on MediaTemple</a> <small> How to enable access to remote files on MediaTemple...</small></li></ol>]]></description>
		<wfw:commentRss>http://renownedmedia.com/blog/using-tortoisesvn-with-mediatemple-subversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CodeIgniter .htaccess for MediaTemple</title>
		<link>http://renownedmedia.com/blog/codeigniter-htaccess-for-mediatemple/</link>
		<comments>http://renownedmedia.com/blog/codeigniter-htaccess-for-mediatemple/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 20:07:32 +0000</pubDate>
		<dc:creator>Thomas Hunter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[MediaTemple]]></category>

		<guid isPermaLink="false">http://renownedmedia.com/blog/?p=608</guid>
		<description><![CDATA[<img src="http://renownedmedia.com/blog/files/mediatemple.png" />
A few tweaks need to be made to CodeIgniter to make it compatible with the MediaTemple hosting environment. This article discusses these required changes to get CI running smoothly.


Related posts:<ol><li><a href='http://renownedmedia.com/blog/random-session-timeouts-on-mediatemple/' rel='bookmark' title='Permanent Link: Random Session Timeouts on MediaTemple'>Random Session Timeouts on MediaTemple</a> <small> How to change your php.ini settings on your MediaTemple...</small></li><li><a href='http://renownedmedia.com/blog/enabling-file_get_contents-and-fopen-with-remote-urls-on-mediatemple/' rel='bookmark' title='Permanent Link: Enabling file_get_contents() and fopen() With Remote URL&#8217;s on MediaTemple'>Enabling file_get_contents() and fopen() With Remote URL&#8217;s on MediaTemple</a> <small> How to enable access to remote files on MediaTemple...</small></li><li><a href='http://renownedmedia.com/blog/using-tortoisesvn-with-mediatemple-subversion/' rel='bookmark' title='Permanent Link: Using TortoiseSVN with MediaTemple Subversion'>Using TortoiseSVN with MediaTemple Subversion</a> <small> Article on how to configure your TortoiseSVN client to...</small></li></ol>]]></description>
		<wfw:commentRss>http://renownedmedia.com/blog/codeigniter-htaccess-for-mediatemple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
