<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.5.1" -->
<rss version="0.92">
<channel>
	<title>Coders Cult Web Development Blog</title>
	<link>http://coderscult.com</link>
	<description>Website development - HTML/XHTML, CSS, Javascript/AJAX, PHP, MySQL</description>
	<lastBuildDate>Tue, 01 Jul 2008 00:06:41 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Web Design with Search Engine Optimization in Mind</title>
		<description><![CDATA[






Web designers and developers often take search engine optimization for granted thinking that it is something that can be done later.  While that is true, I would still say that things will be a lot easier and better if search engine optimization is already incorporated into the architecture of a website before it is [...]]]></description>
		<link>http://coderscult.com/xhtml-css/2008/06/25/web-design-with-search-engine-optimization-in-mind/</link>
			</item>
	<item>
		<title>How to Send Email Using PHP</title>
		<description><![CDATA[Sending email using PHP is a pretty straightforward task and this short how to will show you exactly how to do that.  The key to sending emails in PHP is the mail() function.  Here&#8217;s how to to use it:
&#60;?php
// example number 1 - the basic
mail&#40;&#34;email@address.com&#34;,
&#160;&#34;subject of message&#34;,
&#160;&#34;body of message&#34;&#41;;
&#60;span id=&#34;more-45&#34;&#62;&#60;/span&#62;
// example number 2 [...]]]></description>
		<link>http://coderscult.com/php/2008/06/14/how-to-send-email-using-php/</link>
			</item>
	<item>
		<title>CakePHP for Faster Development of PHP Applications</title>
		<description><![CDATA[I have to be honest with you guys that I don&#8217;t really use rapid development frameworks such as CakePHP as I am a hardcore type of programmer who loves to write his code in a text editor but I have to admit that they do make application development a lot faster.  I&#8217;ve seen many [...]]]></description>
		<link>http://coderscult.com/blog/2008/06/11/cakephp-for-faster-development-of-php-applications/</link>
			</item>
	<item>
		<title>PHP cURL Cookies Example</title>
		<description><![CDATA[Want to learn how to use PHP cURL with Cookies?  Well, it&#8217;s pretty simple so let&#8217;s go see the code but first let&#8217;s make a scenario&#8230;
Say we have a page called &#8216;cookiepage.php&#8217; in a particular website that checks for the cookie set by the homepage and will only return the proper output if the [...]]]></description>
		<link>http://coderscult.com/php/php-curl/2008/05/20/php-curl-cookies-example/</link>
			</item>
	<item>
		<title>How to Post Data with cURL in PHP</title>
		<description><![CDATA[Do you need to post data to a website using PHP?  It&#8217;s actually pretty easy to do.  Here&#8217;s the code.
&#60;?php
$urltopost = &#34;http://somewebsite.com/script.php&#34;;
$datatopost = array &#40;
&#34;firstname&#34; =&#62; &#34;Mike&#34;,
&#34;lastname&#34; =&#62; &#34;Lopez&#34;,
&#34;email&#34; =&#62; &#34;my@email.com&#34;,
&#41;;
&#60;span id=&#34;more-40&#34;&#62;&#60;/span&#62;
$ch = curl_init &#40;$urltopost&#41;;
curl_setopt &#40;$ch, CURLOPT_POST, true&#41;;
curl_setopt &#40;$ch, CURLOPT_POSTFIELDS, $datatopost&#41;;
curl_setopt &#40;$ch, CURLOPT_RETURNTRANSFER, true&#41;;
$returndata = curl_exec &#40;$ch&#41;;
?&#62;
And what happened?  Here&#8217;s my quick [...]]]></description>
		<link>http://coderscult.com/php/php-curl/2008/05/20/how-to-post-data-with-curl-in-php/</link>
			</item>
	<item>
		<title>PHP cURL Tutorial and Example</title>
		<description><![CDATA[Do you want to learn how to use cURL in PHP?  Well, if so then this tutorial is for you.  But before anything else, what is cURL?
cURL is a command line tool for transferring files with URL syntax. The strong point of cURL is the number of data transfer protocols it supports. It [...]]]></description>
		<link>http://coderscult.com/php/php-curl/2008/05/20/php-curl-tutorial-and-example/</link>
			</item>
	<item>
		<title>How to Correctly Render Transparent PNG images in Internet Explorer</title>
		<description><![CDATA[PNG images are more often better than GIF when it comes to rendering images with transparency mainly because GIF can only support 256 colors while PNG can support 32-bit colors.  Here&#8217;s a graphical comparison between the two.


PNG is obviously better!  Problem is that Internet Explorer 6 and below doesn&#8217;t support PNG images natively [...]]]></description>
		<link>http://coderscult.com/javascript-ajax/2008/04/25/how-to-correctly-render-transparent-png-images-in-internet-explorer/</link>
			</item>
	<item>
		<title>I&#8217;m a Potentate of the Rose</title>
		<description><![CDATA[Oh yes!  I finally cracked the code after spending almost an hour trying to figure the logic of the puzzle and I officially became a Potentate of the Rose.  The game is called Petals Around the Rose and it&#8217;s quite a nasty game.  My friend Kiel introduced me to it and I [...]]]></description>
		<link>http://coderscult.com/blog/2008/04/18/im-a-potentate-of-the-rose/</link>
			</item>
	<item>
		<title>Setting up your PHP Development Environment</title>
		<description><![CDATA[I realized that a lot of people who want to learn PHP are having hard time getting started with it - not because PHP is difficult to use or understand but simply because they don&#8217;t know where to start.  Because of this, I decided to write this short how-to on getting started with PHP. [...]]]></description>
		<link>http://coderscult.com/php/2008/03/26/setting-up-your-php-development-environment/</link>
			</item>
	<item>
		<title>Google Translate Working Example</title>
		<description><![CDATA[As promised, here&#8217;s a sample implementation of the Google Translate API.
&#60;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34; ?&#62;
&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62;
&#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#62;
&#60;head&#62;
&#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=UTF-8&#34; /&#62;
&#60;title&#62;Google Translate&#60;/title&#62;
&#60;script language=&#34;javascript&#34; src=&#34;http://www.google.com/jsapi&#34;&#62;&#60;/script&#62;
&#60;script language=&#34;javascript&#34;&#62;
&#160;google.load &#40;&#34;language&#34;, &#34;1&#34;&#41;;
&#160;function gtrans &#40;f&#41; &#123;
&#160; document.getElementById&#40;&#34;translation&#34;&#41;.innerHTML = &#34;-&#34;;
&#160; var lang = f.langpair.value.split&#40;&#34;&#124;&#34;&#41;;
&#160; google.language.translate &#40;f.translate.value, lang&#91;0&#93;, lang&#91;1&#93;, function &#40;result&#41; &#123;
&#160; &#160;if &#40;!result.error&#41; &#123;
&#160; &#160; var container [...]]]></description>
		<link>http://coderscult.com/javascript-ajax/2008/03/22/google-translate-working-example/</link>
			</item>
</channel>
</rss>
