<?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>Webmasters by Design &#187; PHP</title>
	<atom:link href="http://www.webmastersbydesign.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webmastersbydesign.com</link>
	<description></description>
	<lastBuildDate>Sun, 14 Mar 2010 04:49:46 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>New Resources Posted &#8211; PHP Frameworks</title>
		<link>http://www.webmastersbydesign.com/2010/03/13/new-resources-posted-php-frameworks/</link>
		<comments>http://www.webmastersbydesign.com/2010/03/13/new-resources-posted-php-frameworks/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 05:37:30 +0000</pubDate>
		<dc:creator>Scott Spear</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[Resources]]></category>

		<guid isPermaLink="false">http://www.webmastersbydesign.com/?p=1904</guid>
		<description><![CDATA[There is a new section on the Resources page for Frameworks. This section of the resources page lists popular PHP frameworks like Zend Framework, which is my personal favorite, and CakePHP. The six common PHP frameworks that were added are also listed below:

Zend Framework
CakePHP
CodeIgniter
Symfony
Horde  Application  Framework
eZ  Components

Do you use a different framework [...]]]></description>
			<content:encoded><![CDATA[<p>There is a new section on the <a href="http://www.webmastersbydesign.com/resources/">Resources</a> page for Frameworks. This section of the resources page lists popular PHP frameworks like Zend Framework, which is my personal favorite, and CakePHP. The six common PHP frameworks that were added are also listed below:</p>
<ul>
<li><a href="http://framework.zend.com" target="_blank" onclick="pageTracker._trackPageview('/outgoing/framework.zend.com?referer=');">Zend Framework</a></li>
<li><a href="http://www.cakephp.org" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.cakephp.org?referer=');">CakePHP</a></li>
<li><a href="http://www.codeigniter.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.codeigniter.com/?referer=');">CodeIgniter</a></li>
<li><a href="http://www.symfony-project.com/" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.symfony-project.com/?referer=');">Symfony</a></li>
<li><a title="Horde" onclick="pageTracker._trackPageview('/outgoing/horde.org/horde/?referer=');pageTracker._trackPageview('/outgoing/help.live.com/help.aspx?mkt=en-us_amp_project=wl_webmasters&amp;referer=');" href="http://horde.org/horde/" target="_blank">Horde  Application  Framework</a></li>
<li><a title="eZ Components" href="http://ez.no/ezcomponents" target="_blank" onclick="pageTracker._trackPageview('/outgoing/ez.no/ezcomponents?referer=');">eZ  Components</a></li>
</ul>
<p>Do you use a different framework from those listed above? Leave a comment about it and I'll get it added to the list.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webmastersbydesign.com/2010/03/13/new-resources-posted-php-frameworks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Date Tips &amp; Tricks</title>
		<link>http://www.webmastersbydesign.com/2008/12/04/php-date-tips-tricks/</link>
		<comments>http://www.webmastersbydesign.com/2008/12/04/php-date-tips-tricks/#comments</comments>
		<pubDate>Thu, 04 Dec 2008 12:19:18 +0000</pubDate>
		<dc:creator>Scott Spear</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Webmaster]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://www.webmastersbydesign.com/?p=1747</guid>
		<description><![CDATA[For those of you using PHP to develop your web pages, I'm sure that you have used the date function at some point. There are so many cases that I have used this to show a date on a page, like using date("Y") in the copyright section of the footer to always reflect the current [...]]]></description>
			<content:encoded><![CDATA[<p style="padding-left: 30px;">
<p>For those of you using PHP to develop your web pages, I'm sure that you have used the <a title="PHP Date Function" href="http://us.php.net/date" onclick="pageTracker._trackPageview('/outgoing/us.php.net/date?referer=');">date</a> function at some point. There are so many cases that I have used this to show a date on a page, like using date("Y") in the copyright section of the footer to always reflect the current year. Here are a few tips &amp; tricks to help you save some time.</p>
<h2 style="border-bottom:1px solid #000000;">Formatting</h2>
<h3>Predefined Constants</h3>
<p>This is a trick that I really wish I had known about earlier. PHP 5.1.1 and forward offers date formatting <a title="PHP DateTime Constants" href="http://us.php.net/manual/en/datetime.constants.php" onclick="pageTracker._trackPageview('/outgoing/us.php.net/manual/en/datetime.constants.php?referer=');">constants</a>. So when I was looking for examples on how to get the date in the correct format when creating my RSS feed, I could have simply used the DATE_RSS constant.</p>
<p><strong>Example</strong></p>
<p>Use:</p>
<pre><code><span style="color: #000000;"><span style="color: #0000bb;"><span style="color: #ff0000;">&lt;?</span> <span style="color: #0000ff;">echo date</span></span><span style="color: #007700;">(</span></span></code><span style="color: #000000;"><code><span><span>DATE_RSS</span></span></code></span><code><span style="color: #000000;"><span style="color: #007700;">)<span style="color: #000000;">;</span></span><span style="color: #0000bb;"> <span style="color: #ff0000;">?&gt;
<strong><span style="color: #000000;">Output:</span></strong> </span></span></span></code>Thu, 24 Nov 2008 12:29:09 -0500</pre>
<p>Instead of:</p>
<pre><code><span style="color: #000000;"><span style="color: #0000bb;"><span style="color: #ff0000;">&lt;?</span> <span style="color: #0000ff;">echo date</span></span><span style="color: #007700;">(</span><span style="color: #dd0000;">'D, d M Y G:i:s O'</span><span style="color: #007700;">)<span style="color: #000000;">;</span></span><span style="color: #0000bb;"> <span style="color: #ff0000;">?&gt;
</span></span></span></code><code><span style="color: #000000;"><span style="color: #0000bb;"><span style="color: #ff0000;"><strong><span style="color: #000000;">Output:</span></strong> </span></span></span></code>Thu, 24 Nov 2008 12:29:09 -0500<code><span style="color: #000000;"><span style="color: #0000bb;"><span style="color: #ff0000;">
</span></span></span></code></pre>
<p>There are eleven total predefined constants available including DATE_RSS, DATE_ATOM, DATE_COOKIE, and DATE_W3C.</p>
<h3>User Defined Constants</h3>
<p>Building on this same idea of constants, you could easily create your own date format constants to use. All you would need to do is <a title="PHP Function Define" href="http://us3.php.net/manual/en/function.define.php" onclick="pageTracker._trackPageview('/outgoing/us3.php.net/manual/en/function.define.php?referer=');">define</a> a constant with the string value of the date format and then call it within the date function. I have included a simple example below.</p>
<p><strong>Example</strong></p>
<pre><code><span style="color: #000000;"><span style="color: #0000bb;"><span style="color: #ff0000;">&lt;? <span style="color: #0000ff;">define</span><span style="color: #000000;">(DATE_SCOTT,</span>'m/d/Y'<span style="color: #000000;">);</span> ?&gt;
&lt;?</span> <span style="color: #0000ff;">echo date</span></span><span style="color: #007700;">(<span style="color: #000000;">DATE_</span></span><span style="color: #000000;">SCOTT</span><span style="color: #007700;">)<span style="color: #000000;">;</span></span><span style="color: #0000bb;"> <span style="color: #ff0000;">?&gt;
</span></span></span></code><code><span style="color: #000000;"><span style="color: #0000bb;"><span style="color: #ff0000;"><strong><span style="color: #000000;">Output:</span></strong> <span style="color: #000000;">11/24/2008</span></span></span></span></code><code><span style="color: #000000;"><span style="color: #0000bb;"><span style="color: #ff0000;">
</span></span></span></code></pre>
<h2 style="border-bottom:1px solid #000000;">Relative Dates</h2>
<p>This trick is one I use when I need to get a date like tomorrow or the day after tomorrow or yesterday. The function <a title="PHP Function strtotime" href="http://us3.php.net/strtotime" onclick="pageTracker._trackPageview('/outgoing/us3.php.net/strtotime?referer=');"><span class="refname">strtotime</span></a> allows you to easily calculate dates like tomorrow and yesterday. You can turn any <a title="GNU Date Formats" href="http://www.gnu.org/software/shishi/manual/html_node/Date-input-formats.html" onclick="pageTracker._trackPageview('/outgoing/www.gnu.org/software/shishi/manual/html_node/Date-input-formats.html?referer=');">GNU formatted date</a> string into a PHP date. I have included a couplt of examples below that are based on a publish date of 11-24-2008.</p>
<p><strong>Example</strong></p>
<pre><code><span style="color: #000000;"><span style="color: #0000bb;"><span style="color: #ff0000;">&lt;?</span> <span style="color: #0000ff;">echo date</span>(<span style="color: #ff0000;">'m-d-Y'</span>,<span style="color: #0000ff;">strtotime</span>(<span style="color: #ff0000;">'yesterday'</span>));</span></span></code><code><span style="color: #000000;"><span style="color: #0000bb;"> <span style="color: #ff0000;">?&gt;
<strong><span style="color: #000000;">Output:</span></strong> </span></span></span></code>11-23-2008

<code><span style="color: #000000;"><span style="color: #0000bb;"><span style="color: #ff0000;">&lt;?</span> <span style="color: #0000ff;">echo date</span>(<span style="color: #ff0000;">'m-d-Y'</span>,<span style="color: #0000ff;">strtotime</span>(<span style="color: #ff0000;">'+4 days'</span>));</span></span></code><code><span style="color: #000000;"><span style="color: #0000bb;"> <span style="color: #ff0000;">?&gt;
<strong><span style="color: #000000;">Output:</span></strong> </span></span></span></code>11-28-2008</pre>
<h2 style="border-bottom:1px solid #000000;">Calculate Age</h2>
<p>This trick is a fairly simple and straight forward one. All it does is find an age in years. Simply pass the year(s) you want to compare and it will return the age in year. This could easily be made into a function like getAge($yr1,$yr2);</p>
<pre><code><span style="color: #000000;"><span style="color: #0000bb;"><span style="color: #ff0000;">&lt;?</span> <span style="color: #0000ff;"><span style="color: #0000bb;"><span style="color: #0000ff;">echo floor</span><span style="color: #000000;">(</span><span style="color: #0000ff;">abs</span><span style="color: #000000;">(</span><span style="color: #0000ff;">strtotime</span><span style="color: #000000;">(</span><span style="color: #ff0000;">'Y'</span><span style="color: #000000;">)</span> - <span style="color: #0000ff;">strtotime</span><span style="color: #000000;">(</span><span style="color: #ff0000;">'1985'</span><span style="color: #000000;">))</span>/<span style="color: #ff0000;">31536000
</span><span style="color: #ff9900;">/*1 year in seconds*/</span><span style="color: #000000;">);</span></span></span></span></span></code><code><span style="color: #000000;"><span style="color: #0000bb;"> <span style="color: #ff0000;">?&gt;
<strong><span style="color: #000000;">Output:</span></strong> </span></span></span></code>23</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.webmastersbydesign.com/2008/12/04/php-date-tips-tricks/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>phpMyAdmin 3.1.0 Relesased</title>
		<link>http://www.webmastersbydesign.com/2008/12/02/phpmyadmin-310-relesased/</link>
		<comments>http://www.webmastersbydesign.com/2008/12/02/phpmyadmin-310-relesased/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 17:37:42 +0000</pubDate>
		<dc:creator>Scott Spear</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Webmaster]]></category>
		<category><![CDATA[phpMyAdmin]]></category>

		<guid isPermaLink="false">http://www.webmastersbydesign.com/?p=1806</guid>
		<description><![CDATA[For those of you that are as hooked on phpMyAdmin as I am, you will be happy to know that there is a new version available. phpMyAdmin 3.1.0 includes a number of improvements and fixes.
The list of improvements includes security updates, language updates, export fixes, and general patches. The release notes highlight a few specific [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-1395" title="phpMyAdmin Screenshot" src="http://cdn1.webmastersbydesign.com/2008/10/phpmyadminscreenshot.jpg" alt="" width="485" height="228" /></p>
<p>For those of you that are as hooked on <a title="phpMyAdmin" href="http://www.phpmyadmin.net/home_page/" onclick="pageTracker._trackPageview('/outgoing/www.phpmyadmin.net/home_page/?referer=');">phpMyAdmin</a> as I am, you will be happy to know that there is a new version available. phpMyAdmin 3.1.0 includes a number of improvements and fixes.</p>
<p>The list of improvements includes security updates, language updates, export fixes, and general patches. The release notes highlight a few specific improvements: "this version has a new setup mechanism and supports BLOBstreaming and the Swekey hardware authentication" (<a title="phpMyAdmin 3.1.0 Release Notes" href="http://sourceforge.net/project/shownotes.php?release_id=643509" onclick="pageTracker._trackPageview('/outgoing/sourceforge.net/project/shownotes.php?release_id=643509&amp;referer=');">release notes</a>).</p>
<p>You can view the <a title="phpMyAdmin 3.1.0 Release Notes" href="http://sourceforge.net/project/shownotes.php?release_id=643509" onclick="pageTracker._trackPageview('/outgoing/sourceforge.net/project/shownotes.php?release_id=643509&amp;referer=');">release notes</a> for full details concerning the new release and <a title="Download phpMyAdmin 3.1.0" href="http://sourceforge.net/project/showfiles.php?group_id=23067&amp;package_id=16462&amp;release_id=643509" onclick="pageTracker._trackPageview('/outgoing/sourceforge.net/project/showfiles.php?group_id=23067_amp_package_id=16462_amp_release_id=643509&amp;referer=');">download</a> the new version from sourceforge.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webmastersbydesign.com/2008/12/02/phpmyadmin-310-relesased/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How In-Demand Are Your Skills?</title>
		<link>http://www.webmastersbydesign.com/2008/11/21/how-in-demand-are-your-skills/</link>
		<comments>http://www.webmastersbydesign.com/2008/11/21/how-in-demand-are-your-skills/#comments</comments>
		<pubDate>Fri, 21 Nov 2008 12:23:49 +0000</pubDate>
		<dc:creator>Scott Spear</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Webmaster]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[skills]]></category>
		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://www.webmastersbydesign.com/?p=1735</guid>
		<description><![CDATA[Have you ever wondered if your skills are in demand? With so many different possibilities available for web development, it is tough to know if you should keep mastering a specific technology or start learning a new one. After reading an article about how PHP programming jobs are in high demand, I asked myself the [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.odesk.com/trends" onclick="pageTracker._trackPageview('/outgoing/www.odesk.com/trends?referer=');"><img class="size-full wp-image-1738 aligncenter" title="oDesk Trends Screenshot" src="http://cdn1.webmastersbydesign.com/2008/11/odeskscreenshot.jpg" alt="" width="500" height="280" /></a></p>
<p>Have you ever wondered if your skills are in demand? With so many different possibilities available for web development, it is tough to know if you should keep mastering a specific technology or start learning a new one. After reading an article about how <a title="PHP programming jobs in high demand" href="http://www.vnunet.com/vnunet/news/2230747/php-programming-jobs-demand" onclick="pageTracker._trackPageview('/outgoing/www.vnunet.com/vnunet/news/2230747/php-programming-jobs-demand?referer=');">PHP programming jobs are in high demand</a>, I asked myself the follow-up question: what other skills do I have that are in high demand, and which skills do I have that are not?</p>
<p>The article linked to a great resource from <a title="oDesk" href="http://www.odesk.com" onclick="pageTracker._trackPageview('/outgoing/www.odesk.com?referer=');">oDesk</a> that lists the current (monthly) <a title="oDesk Trends" href="http://www.odesk.com/trends" onclick="pageTracker._trackPageview('/outgoing/www.odesk.com/trends?referer=');">trends</a> for many of the development and design skills used for web development. There are 84 different trends with a wealth of useful information about the skill's demand including graphs, stats, and recent job postings. Although these stats are pulled from information specifically on oDesk, it represents demand from all around the world. I have listed links to some of the most in-demand skills right now.</p>
<ul>
<li><a title="CSS" href="http://www.odesk.com/trends/CSS" onclick="pageTracker._trackPageview('/outgoing/www.odesk.com/trends/CSS?referer=');">CSS</a></li>
<li><a title="Drupal" href="http://www.odesk.com/trends/Drupal" onclick="pageTracker._trackPageview('/outgoing/www.odesk.com/trends/Drupal?referer=');">Drupal</a></li>
<li><a title="FreeBSD" href="http://www.odesk.com/trends/FreeBSD" onclick="pageTracker._trackPageview('/outgoing/www.odesk.com/trends/FreeBSD?referer=');">FreeBSD</a></li>
<li><a title="Flash" href="http://www.odesk.com/trends/Flash" onclick="pageTracker._trackPageview('/outgoing/www.odesk.com/trends/Flash?referer=');">Flash</a></li>
<li><a title="PHP" href="http://www.odesk.com/trends/PHP" onclick="pageTracker._trackPageview('/outgoing/www.odesk.com/trends/PHP?referer=');">PHP</a></li>
<li><a title="Photoshop" href="http://www.odesk.com/trends/Photoshop" onclick="pageTracker._trackPageview('/outgoing/www.odesk.com/trends/Photoshop?referer=');">Photoshop</a></li>
<li><a title="MySQL" href="http://www.odesk.com/trends/MySQL" onclick="pageTracker._trackPageview('/outgoing/www.odesk.com/trends/MySQL?referer=');">MySQL</a></li>
<li><a title="XML" href="http://www.odesk.com/trends/XML" onclick="pageTracker._trackPageview('/outgoing/www.odesk.com/trends/XML?referer=');">XML</a></li>
<li><a title="JavaScript" href="http://www.odesk.com/trends/JavaScript" onclick="pageTracker._trackPageview('/outgoing/www.odesk.com/trends/JavaScript?referer=');">JavaScript</a></li>
<li><a title="Ajax" href="http://www.odesk.com/trends/AJAX" onclick="pageTracker._trackPageview('/outgoing/www.odesk.com/trends/AJAX?referer=');">Ajax</a></li>
</ul>
<p>As a side note, this site is a fantastic example of how great the <a title="Google Chart API" href="http://code.google.com/apis/chart/" onclick="pageTracker._trackPageview('/outgoing/code.google.com/apis/chart/?referer=');">Google Chart API</a> is.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webmastersbydesign.com/2008/11/21/how-in-demand-are-your-skills/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Book Review: Sams Teach Yourself Ajax, JavaScript, and PHP All in One</title>
		<link>http://www.webmastersbydesign.com/2008/11/06/book-review-sams-teach-yourself-ajax-javascript-and-php-all-in-one/</link>
		<comments>http://www.webmastersbydesign.com/2008/11/06/book-review-sams-teach-yourself-ajax-javascript-and-php-all-in-one/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 12:36:31 +0000</pubDate>
		<dc:creator>Scott Spear</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Books]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Webmaster]]></category>
		<category><![CDATA[book review]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Sams Teach Yourself]]></category>

		<guid isPermaLink="false">http://www.webmastersbydesign.com/?p=489</guid>
		<description><![CDATA[Sams Teach Yourself books are great resources in a large array of topics. They have released Sams Teach Yourself Ajax, JavaScript, and PHP All in One in paperback version on July 12, 2008. This book is great for webmasters because it includes three of the most popular technologies used on the web.
Like all the rest [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="Sams Teach Yourself Ajax, JavaScript, and PHP All in One" href="http://www.amazon.com/gp/product/0672329654?ie=UTF8&amp;tag=chriswebmares-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0672329654" onclick="pageTracker._trackPageview('/outgoing/www.amazon.com/gp/product/0672329654?ie=UTF8_amp_tag=chriswebmares-20_amp_linkCode=as2_amp_camp=1789_amp_creative=9325_amp_creativeASIN=0672329654&amp;referer=');"><img class="size-full wp-image-493 aligncenter" title="Sams Teach Yourself Ajax, JavaScript, and PHP All in One" src="http://webmastersbydesign.smseserver.com/wp-content/uploads/2008/08/51n3kzlb28l_sl160_.jpg" alt="" width="119" height="160" /></a></p>
<p style="text-align: left;">Sams Teach Yourself books are great resources in a large array of topics. They have released <span style="text-decoration: underline;">Sams Teach Yourself Ajax, JavaScript, and PHP All in One</span> in paperback version on July 12, 2008. This book is great for webmasters because it includes three of the most popular technologies used on the web.</p>
<p>Like all the rest of the "Sams Teach Yourself" line of books, this one is easy to follow, easy to understand, and takes you from a beginner to an intermediate and beyond. There are a number of visual aids including screenshots and diagrams to help you understand what you have read. Another great help is the amount of code examples used throughout the book; there are examples for most of the topics covered.</p>
<p>The book starts with a general overview at the beginning and works towards a more detailed explanation at the end. In chapter one, you will learn the basics of the web, HTML, CSS, and Ajax. By the end of chapter nine, you will understand JavaScript, using it to manipulate the DOM and add usability to your site. By chapter thirteen you will be using Ajax and by the end of chapter eighteen, you will be using Object Oriented PHP to make your site dynamic. Once you have taken all of that in, you can learn about XML responses, web services (REST and SOAP), and gain a basic understanding about a few popular Ajax tools and libraries that are available.</p>
<p>An added feature with this book is beyond the pages of helpful information. There is a CD provided with the book that includes all of the software needed to get a basic web server up and running. It includes <a title="XAMPP" href="http://www.apachefriends.org/en/xampp.html" onclick="pageTracker._trackPageview('/outgoing/www.apachefriends.org/en/xampp.html?referer=');">XAMPP</a>, <a title="jEdit" href="http://www.jedit.org/" onclick="pageTracker._trackPageview('/outgoing/www.jedit.org/?referer=');">jEdit</a>, <a title="Prototype JS" href="http://www.prototypejs.org/" onclick="pageTracker._trackPageview('/outgoing/www.prototypejs.org/?referer=');">Prototype</a>, <a title="Scriptaculous JS" href="http://script.aculo.us/" onclick="pageTracker._trackPageview('/outgoing/script.aculo.us/?referer=');">Scriptaculous</a>, <a title="Rico JS" href="http://openrico.org/" onclick="pageTracker._trackPageview('/outgoing/openrico.org/?referer=');">Rico</a>, <a title="XOAD" href="http://sourceforge.net/projects/xoad/" onclick="pageTracker._trackPageview('/outgoing/sourceforge.net/projects/xoad/?referer=');">XOAD</a>, searchable PDF tutorials, and source code for the examples in the book. Most of these are freely available for download on the web, but it is nice to have them all in one place, especially for a beginner that doesn't know what to look for.</p>
<p>This book is well worth your time to read, especially if you are a beginner looking to get not only introduced to these web technologies, but also get started using them. You can pick up your copy at <a title="Sams Teach Yourself Ajax, JavaScript, and PHP All in One" href="http://www.amazon.com/gp/product/0672329654?ie=UTF8&amp;tag=chriswebmares-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0672329654" onclick="pageTracker._trackPageview('/outgoing/www.amazon.com/gp/product/0672329654?ie=UTF8_amp_tag=chriswebmares-20_amp_linkCode=as2_amp_camp=1789_amp_creative=9325_amp_creativeASIN=0672329654&amp;referer=');">Amazon.com</a> and get started building dynamic websites using Ajax, JavaScript, and PHP.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webmastersbydesign.com/2008/11/06/book-review-sams-teach-yourself-ajax-javascript-and-php-all-in-one/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free Online Tech Books from Techotopia</title>
		<link>http://www.webmastersbydesign.com/2008/10/29/free-online-tech-books-from-techotopia/</link>
		<comments>http://www.webmastersbydesign.com/2008/10/29/free-online-tech-books-from-techotopia/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 11:06:05 +0000</pubDate>
		<dc:creator>Scott Spear</dc:creator>
				<category><![CDATA[Books]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Webmaster]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Techotopia]]></category>

		<guid isPermaLink="false">http://www.webmastersbydesign.com/?p=1573</guid>
		<description><![CDATA[Techotopia offers free online books that cover a number of subjects including programming languages, security,  and Linux. The books are hosted on their wiki and are available to read online. The four main books that brought me to this site are:

PHP Essentials
MySQL Essentials
JavaScript Essentials
Ruby Essentials

As the website states that the "IT Essentials series of books [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-1575" title="Techotopia Screenshot" src="http://cdn1.webmastersbydesign.com/2008/10/techotopiascreenshot.jpg" alt="" width="500" height="287" /></p>
<p style="text-align: left;"><a title="Techotopia" href="http://www.techotopia.com/index.php/Main_Page" onclick="pageTracker._trackPageview('/outgoing/www.techotopia.com/index.php/Main_Page?referer=');">Techotopia</a> offers free online books that cover a number of subjects including programming languages, security,  and Linux. The books are hosted on their wiki and are available to read online. The four main books that brought me to this site are:</p>
<ul>
<li><a title="Techotopia | PHP Essentials" href="http://www.techotopia.com/index.php/PHP_Essentials" onclick="pageTracker._trackPageview('/outgoing/www.techotopia.com/index.php/PHP_Essentials?referer=');">PHP Essentials</a></li>
<li><a title="Techotopia | MySQL Essentials" href="http://www.techotopia.com/index.php/MySQL_Essentials" onclick="pageTracker._trackPageview('/outgoing/www.techotopia.com/index.php/MySQL_Essentials?referer=');">MySQL Essentials</a></li>
<li><a title="Techotopia | JavaScript Essentials" href="http://www.techotopia.com/index.php/JavaScript_Essentials" onclick="pageTracker._trackPageview('/outgoing/www.techotopia.com/index.php/JavaScript_Essentials?referer=');">JavaScript Essentials</a></li>
<li><a title="Techotopia | Ruby Essentials" href="http://www.techotopia.com/index.php/Ruby_Essentials" onclick="pageTracker._trackPageview('/outgoing/www.techotopia.com/index.php/Ruby_Essentials?referer=');">Ruby Essentials</a></li>
</ul>
<p>As the website states that the "IT Essentials series of books are designed to provide detailed information that is accessible to both experienced and novice readers" (<a title="Techotopia" href="http://www.techotopia.com/index.php/Main_Page" onclick="pageTracker._trackPageview('/outgoing/www.techotopia.com/index.php/Main_Page?referer=');">Techotopia</a>). The books are clear and concise, providing detailed explanations and examples to help you understand the content. Each book is made up of multiple chapters in a logical and easy to follow order. You can access the table of contents from every page which makes it easy to skip around quickly and easily to look at what you find interesting and useful.</p>
<p style="text-align: left;">As well as the four books mentioned above, you can find books on these topics:</p>
<ul>
<li><a title="Techotopia | Ubuntu Linux" href="http://www.techotopia.com/index.php/Ubuntu_Linux_Essentials" onclick="pageTracker._trackPageview('/outgoing/www.techotopia.com/index.php/Ubuntu_Linux_Essentials?referer=');">Ubuntu</a></li>
<li><a title="Techotopia | Fedora Linux" href="http://www.techotopia.com/index.php/Fedora_Linux_Essentials" onclick="pageTracker._trackPageview('/outgoing/www.techotopia.com/index.php/Fedora_Linux_Essentials?referer=');">Fedora</a></li>
<li><a title="Techotopia | OpenSUSE Desktop" href="http://www.techotopia.com/index.php/OpenSUSE_Desktop_Essentials" onclick="pageTracker._trackPageview('/outgoing/www.techotopia.com/index.php/OpenSUSE_Desktop_Essentials?referer=');">OpenSUSE</a></li>
<li><a title="Techotopia | C#" href="http://www.techotopia.com/index.php/C_Sharp_Essentials" onclick="pageTracker._trackPageview('/outgoing/www.techotopia.com/index.php/C_Sharp_Essentials?referer=');">C#</a></li>
<li><a title="Techotopia | Visual Basic" href="http://www.techotopia.com/index.php/Visual_Basic_Essentials" onclick="pageTracker._trackPageview('/outgoing/www.techotopia.com/index.php/Visual_Basic_Essentials?referer=');">Visual Basic</a></li>
<li><a title="Techotopia | Security+ Essentials" href="http://www.techotopia.com/index.php/Security%2B_Essentials" onclick="pageTracker._trackPageview('/outgoing/www.techotopia.com/index.php/Security_2B_Essentials?referer=');">Security+ Essentials</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.webmastersbydesign.com/2008/10/29/free-online-tech-books-from-techotopia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZendCon 08 Slides Available On Zend Developer Zone</title>
		<link>http://www.webmastersbydesign.com/2008/10/10/zendcon-08-slides-available-on-zend-developer-zone/</link>
		<comments>http://www.webmastersbydesign.com/2008/10/10/zendcon-08-slides-available-on-zend-developer-zone/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 16:36:02 +0000</pubDate>
		<dc:creator>Scott Spear</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Webmaster]]></category>
		<category><![CDATA[presentations]]></category>
		<category><![CDATA[Zend]]></category>
		<category><![CDATA[ZendCon 08]]></category>

		<guid isPermaLink="false">http://www.webmastersbydesign.com/?p=1470</guid>
		<description><![CDATA[Zend Technologies held their fourth ZendCon conference, ZendCon 08, in Santa Clara, CA from September 15-18. In case you weren't able to attend (like me) or just want to see them again, the presentations from the conference are available online. You can view the ZendCon 08 Slides from the Zend Developer Zone website.
There are 60 [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a title="ZendCon 08" href="http://www.zendcon.com/ZendCon08/public/content/home" onclick="pageTracker._trackPageview('/outgoing/www.zendcon.com/ZendCon08/public/content/home?referer=');"><img class="size-full wp-image-1474 aligncenter" title="ZendCon 08" src="http://www.webmastersbydesign.com/wp-content/uploads/2008/10/zendcon08.jpg" alt="" width="257" height="79" /></a></p>
<p>Zend Technologies held their fourth ZendCon conference, ZendCon 08, in Santa Clara, CA from September 15-18. In case you weren't able to attend (like me) or just want to see them again, the presentations from the conference are available online. You can view the <a href="http://devzone.zend.com/article/3902-ZendCon-08-Slides" onclick="pageTracker._trackPageview('/outgoing/devzone.zend.com/article/3902-ZendCon-08-Slides?referer=');">ZendCon 08 Slides</a> from the Zend Developer Zone website.</p>
<p>There are 60 different presentations available currently with a possibility of more on the way. They cover a wide range of topics including <a title="Join-fu: The Art of SQL Tuning for MySQL" href="http://www.slideshare.net/ZendCon/joinfu-the-art-of-sql-tuning-for-mysql-presentation" onclick="pageTracker._trackPageview('/outgoing/www.slideshare.net/ZendCon/joinfu-the-art-of-sql-tuning-for-mysql-presentation?referer=');">MySQL</a> (Jay Pipes), <a title="Facebook Development with Zend Framework" href="http://www.slideshare.net/gtibrett/facebook-development-with-zend-framework-presentation" onclick="pageTracker._trackPageview('/outgoing/www.slideshare.net/gtibrett/facebook-development-with-zend-framework-presentation?referer=');">Facebook development</a> (Brett Harris), <a title="PECL Picks - Extensions to make your life better" href="http://www.slideshare.net/ZendCon/pecl-picks-extensions-to-make-your-life-better-presentation" onclick="pageTracker._trackPageview('/outgoing/www.slideshare.net/ZendCon/pecl-picks-extensions-to-make-your-life-better-presentation?referer=');">PECL</a> (Elizabeth M Smith), <a title="Scaling PHP Applications with Zend Platform" href="http://www.slideshare.net/shahar/scaling-php-applications-with-zend-platform-presentation" onclick="pageTracker._trackPageview('/outgoing/www.slideshare.net/shahar/scaling-php-applications-with-zend-platform-presentation?referer=');">scaling PHP applications</a> (Shahar Evron), and many more. The presentations are broken down by the day they were presented and show you the speaker and session name. Here are a few of the presentations that I'll be checking out this weekend.</p>
<ul>
<li><a href="http://www.slideshare.net/weierophinney/getting-started-with-zend-framework-presentation" target="_NEW" onclick="pageTracker._trackPageview('/outgoing/www.slideshare.net/weierophinney/getting-started-with-zend-framework-presentation?referer=');">Getting Started with Zend Framework</a></li>
<li><a href="http://www.slideshare.net/ZendCon/elegant-ways-of-handling-php-errors-and-exceptions-presentation" target="_NEW" onclick="pageTracker._trackPageview('/outgoing/www.slideshare.net/ZendCon/elegant-ways-of-handling-php-errors-and-exceptions-presentation?referer=');">Elegant Ways of Handling PHP Errors and Exceptions</a></li>
<li><a href="http://www.slideshare.net/tobias382/creating-web-services-with-zend-framework-presentation" target="_NEW" onclick="pageTracker._trackPageview('/outgoing/www.slideshare.net/tobias382/creating-web-services-with-zend-framework-presentation?referer=');">Pick Your Protocol: Creating Web Services with Zend Framework</a></li>
<li><a href="http://www.slideshare.net/bgalbs/state-of-ajax-zend-con-08-presentation" target="_NEW" onclick="pageTracker._trackPageview('/outgoing/www.slideshare.net/bgalbs/state-of-ajax-zend-con-08-presentation?referer=');">State of Ajax</a></li>
<li><a href="http://www.slideshare.net/ZendCon/high-performance-php-my-sql-scaling-techniques-presentation" target="_NEW" onclick="pageTracker._trackPageview('/outgoing/www.slideshare.net/ZendCon/high-performance-php-my-sql-scaling-techniques-presentation?referer=');">High Performance PHP &amp; MySQL scaling techniques</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.webmastersbydesign.com/2008/10/10/zendcon-08-slides-available-on-zend-developer-zone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easily Generate Sample Datasets for Testing at GenerateData.com</title>
		<link>http://www.webmastersbydesign.com/2008/10/06/easily-generate-sample-datasets-for-testing-at-generatedatacom/</link>
		<comments>http://www.webmastersbydesign.com/2008/10/06/easily-generate-sample-datasets-for-testing-at-generatedatacom/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 11:19:44 +0000</pubDate>
		<dc:creator>Scott Spear</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[generator]]></category>

		<guid isPermaLink="false">http://www.webmastersbydesign.com/?p=1281</guid>
		<description><![CDATA[As a developer I have often wanted to be able to test query speeds among other things. The problem is I didn't always have a usable data set sitting around that could meet the requirements of my test cases. To make a long story short, I wish I had GenerateData.com a long time ago. This [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter size-full wp-image-1283" title="GenerateData Screenshot" src="http://www.webmastersbydesign.com/wp-content/uploads/2008/09/generatedatascreenshot.jpg" alt="" width="485" height="237" /></p>
<p style="text-align: left;">As a developer I have often wanted to be able to test query speeds among other things. The problem is I didn't always have a usable data set sitting around that could meet the requirements of my test cases. To make a long story short, I wish I had GenerateData.com a long time ago. This is a great tool and has a lot of potential. It can save a lot of time when you are trying to create your own test data set to work with.</p>
<p style="text-align: left;"><a title="GenerateData.com" href="http://www.generatedata.com/#about" onclick="pageTracker._trackPageview('/outgoing/www.generatedata.com/_about?referer=');">GenerateData.com</a> is currently in version 2.1 (released July 25, 2008) and offers a nice set of features. You can generate data in many different data types like addresses, numbers, lorem ipsum text, email addresses, phone numbers, and more. Once you have chosen what kind of data you would like to generate, you can choose from five different export options. You are able to export the data in XML, Excel, HTML, CSV and SQL formats. The SQL export options gives you the choice of MySQL or Oracle syntax. You can generate up to 200 records at a time, unless you donate $20 or more, which allows you to generate up to 5000 records at a time.</p>
<p style="text-align: left;">The generator is written using PHP, MySQL, and JavaScript. You can use the online version or download a copy of the script for use on your own server. The downloadable version is licensed under <a title="GenerateData GNU License" href="http://www.generatedata.com/#gnu_license" onclick="pageTracker._trackPageview('/outgoing/www.generatedata.com/_gnu_license?referer=');">GNU</a>. The website has requirements and installation instructions to follow if needed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webmastersbydesign.com/2008/10/06/easily-generate-sample-datasets-for-testing-at-generatedatacom/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To Get Your FeedBurner Circulation With One Simple Function</title>
		<link>http://www.webmastersbydesign.com/2008/09/15/how-to-get-your-feedburner-circulation-with-one-simple-function/</link>
		<comments>http://www.webmastersbydesign.com/2008/09/15/how-to-get-your-feedburner-circulation-with-one-simple-function/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 11:15:12 +0000</pubDate>
		<dc:creator>Scott Spear</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Webmaster]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[API]]></category>
		<category><![CDATA[feedburner]]></category>

		<guid isPermaLink="false">http://www.webmastersbydesign.com/?p=970</guid>
		<description><![CDATA[If you have visited a few blogs then I am sure you have seen the FeedBurner stats graphic. The count is very useful, but the graphic itself isn't very appealing, even with the ability to customize it. Thankfully the FeedBurner API was released, which allows you to retrieve your stats without the graphic. I have [...]]]></description>
			<content:encoded><![CDATA[<p>If you have visited a few blogs then I am sure you have seen the FeedBurner stats graphic. The count is very useful, but the graphic itself isn't very appealing, even with the ability to customize it. Thankfully the <a title="FeedBurner API" href="http://code.google.com/apis/feedburner/" onclick="pageTracker._trackPageview('/outgoing/code.google.com/apis/feedburner/?referer=');">FeedBurner API</a> was released, which allows you to retrieve your stats without the graphic. I have taken that API and created a simple function, with the help of <a title="simple XML PHP Class" href="http://www.phpclasses.org/browse/package/4484.html" onclick="pageTracker._trackPageview('/outgoing/www.phpclasses.org/browse/package/4484.html?referer=');">simple XML</a>, to grab your circulation count and display it as text on your site without the graphic.</p>
<p>To start off, you will need to download the <a title="simple XML PHP Class" href="http://www.phpclasses.org/browse/package/4484.html" onclick="pageTracker._trackPageview('/outgoing/www.phpclasses.org/browse/package/4484.html?referer=');">simple XML</a> class and put it in the same folder as the file that will contain this function (or change the include path to reflect the directory of your choice). Once you have done that, you are pretty much done. All you need to do is copy the function below and call the function with your feed URI and it will return the circulation number.</p>
<p>You can see the function and sample usage below.</p>
<h3>Function</h3>
<pre class="php"><span style="color: #000000; font-weight: bold;">function</span> FeedBurnerCirc<span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$feed</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
<span style="color: #b1b100;">include</span> <span style="color: #ff0000;">'simplexml.class.php'</span>;
<span style="color: #0000ff;">$api</span> = <span style="color: #ff0000;">'http://api.feedburner.com/awareness/1.0/GetFeedData?uri='</span>.<span style="color: #0000ff;">$feed</span>;
<span style="color: #0000ff;">$sxml</span> = <span style="color: #000000; font-weight: bold;">new</span> simplexml;
<span style="color: #0000ff;">$sxml</span>-&gt;<span style="color: #006600;">ignore_level</span> = <span style="color: #cc66cc;">1</span>;
<span style="color: #0000ff;">$data</span> = <span style="color: #0000ff;">$sxml</span>-&gt;<span style="color: #006600;">xml_load_file</span><span style="color: #66cc66;">&#40;</span><span style="color: #0000ff;">$api</span>,<span style="color: #ff0000;">&quot;array&quot;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #b1b100;">return</span> <span style="color: #0000ff;">$data</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">&quot;entry&quot;</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">&quot;@attributes&quot;</span><span style="color: #66cc66;">&#93;</span><span style="color: #66cc66;">&#91;</span><span style="color: #ff0000;">&quot;circulation&quot;</span><span style="color: #66cc66;">&#93;</span>;
<span style="color: #66cc66;">&#125;</span></pre>
<h3>Usage</h3>
<pre class="php"><a href="http://www.php.net/echo" onclick="pageTracker._trackPageview('/outgoing/www.php.net/echo?referer=');"><span style="color: #000066;">echo</span></a> FeedBurnerCirc<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'http://feeds.feedburner.com/webmastersbydesign'</span><span style="color: #66cc66;">&#41;</span>;</pre>
<p>You could also easily customize the function to include more data and return an array of results. The API returns data other that the circulation, such as your reach and views. I only wanted the circulation so I didn't return an array of results, but it wouldn't be tough to do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webmastersbydesign.com/2008/09/15/how-to-get-your-feedburner-circulation-with-one-simple-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Online Magazines for Developers and Designers</title>
		<link>http://www.webmastersbydesign.com/2008/08/29/10-online-magazines-for-developers-and-designers/</link>
		<comments>http://www.webmastersbydesign.com/2008/08/29/10-online-magazines-for-developers-and-designers/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 11:53:38 +0000</pubDate>
		<dc:creator>Scott Spear</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Best List]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Webmaster]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[magazine]]></category>

		<guid isPermaLink="false">http://www.webmastersbydesign.com/?p=721</guid>
		<description><![CDATA[PHP Magazine

PHP Magazine is an online magazine in the form of a blog. There are posts that range many different categories, mainly PHP, but others from within their network of sites. There is information from software and book reviews to articles and tutorials.
Ajax Magazine

Ajax Magazine is another online magazine in the form of a blog [...]]]></description>
			<content:encoded><![CDATA[<h3><strong><a title="PHP Magazine" href="http://www.phpmagazine.net/" onclick="pageTracker._trackPageview('/outgoing/www.phpmagazine.net/?referer=');">PHP Magazine</a></strong></h3>
<p style="padding-left: 30px;"><img class="alignnone size-full wp-image-851" title="PHP Magazine Screenshot" src="http://www.webmastersbydesign.com/wp-content/uploads/2008/08/phpmagazine_screenshot.jpg" alt="" width="440" height="177" /></p>
<p style="padding-left: 30px;">PHP Magazine is an online magazine in the form of a blog. There are posts that range many different categories, mainly PHP, but others from within their network of sites. There is information from software and book reviews to articles and tutorials.</p>
<h3><strong><a title="Ajax Magazine" href="http://ajax.phpmagazine.net/" onclick="pageTracker._trackPageview('/outgoing/ajax.phpmagazine.net/?referer=');">Ajax Magazine</a></strong></h3>
<p style="padding-left: 30px;"><img class="alignnone size-full wp-image-852" title="Ajax Magazine Screenshot" src="http://www.webmastersbydesign.com/wp-content/uploads/2008/08/ajaxmagazine_screenshot.jpg" alt="" width="440" height="177" /></p>
<p style="padding-left: 30px;">Ajax Magazine is another online magazine in the form of a blog from the publishers of PHP Magazine. The Ajax version focuses mainly on Ajax technologies and offers news, articles, and reviews to name a few.</p>
<h3><strong><a title="Smashing Magazine" href="http://www.smashingmagazine.com/" onclick="pageTracker._trackPageview('/outgoing/www.smashingmagazine.com/?referer=');">Smashing Magazine</a></strong></h3>
<p style="padding-left: 30px;"><img class="alignnone size-full wp-image-849" title="Smashing Magazine Screenshot" src="http://www.webmastersbydesign.com/wp-content/uploads/2008/08/smashingmagazine_screenshot.jpg" alt="" width="440" height="177" /></p>
<p style="padding-left: 30px;">Smashing Magazine is one of the best sites on the web (also an online magazine in the form of a blog). They have amazing "<a href="http://www.smashingmagazine.com/2007/03/10/web-20-tutorials-round-up/" onclick="pageTracker._trackPageview('/outgoing/www.smashingmagazine.com/2007/03/10/web-20-tutorials-round-up/?referer=');">round-ups</a>" and posts bringing together the best sites, services, and resources on the web. They focus a lot on web 2.0 technologies and provide great content for both designers and developers.</p>
<h3><a title="Design Mag" href="http://designm.ag/" onclick="pageTracker._trackPageview('/outgoing/designm.ag/?referer=');">Design Mag</a></h3>
<p style="padding-left: 30px;"><img class="alignnone size-full wp-image-900" title="DesignMag Screenshot" src="http://www.webmastersbydesign.com/wp-content/uploads/2008/08/designmag_screenshot.jpg" alt="" width="441" height="177" /></p>
<p style="padding-left: 30px;">Design Mag offers news, articles, galleries, interviews and more. The website is in the form of a blog and is updated very frequently. They have great resources and devote a section to freelance information. This is often a common thread between webmasters/designers/developers. They are the home of the <a title="Permanent Link to 200+ Resources for Freelance Web Designers" rel="bookmark" href="http://designm.ag/resources/freelance-designers/" onclick="pageTracker._trackPageview('/outgoing/designm.ag/resources/freelance-designers/?referer=');">200+ Resources for Freelance Web Designers</a> article.</p>
<p style="padding-left: 30px;">
<h3><a title="Website Magazine" href="http://www.websitemagazine.com/content/" onclick="pageTracker._trackPageview('/outgoing/www.websitemagazine.com/content/?referer=');">Website Magazine</a></h3>
<p style="padding-left: 30px;"><img class="alignnone size-full wp-image-862" title="Website Magazine Screenshot" src="http://www.webmastersbydesign.com/wp-content/uploads/2008/08/websitemagazine_screenshot.jpg" alt="" width="439" height="176" /></p>
<p style="padding-left: 30px;">Website Magazine offers their magazine both in print and online. However, the only way you can see the online version is if you subscribe to the print version. The good news: it's free! The website has forums, articles, and blogs full of content. The magazine contains a lot of useful information in typical article format, usually offering one focus article with many other shorter articles throughout.</p>
<h3><strong><a title="Digital Web Magazine" href="http://www.digital-web.com/" onclick="pageTracker._trackPageview('/outgoing/www.digital-web.com/?referer=');">Digital Web Magazine</a></strong></h3>
<p style="padding-left: 30px;"><img class="alignnone size-full wp-image-854" title="Digital Web Screenshot" src="http://www.webmastersbydesign.com/wp-content/uploads/2008/08/digitalweb_screenshot.jpg" alt="" width="441" height="177" /></p>
<p style="padding-left: 30px;">Digital Web Magazine offers news, articles, reviews, interviews, and tutorials. News is updated daily and main articles are updated on a weekly basis and are well worth the wait. The content is very useful and very thorough. They also report on upcoming events around the world.</p>
<h3><strong><a title="SD Times" href="http://www.sdtimes.com/Default.aspx" onclick="pageTracker._trackPageview('/outgoing/www.sdtimes.com/Default.aspx?referer=');">SD Times</a></strong></h3>
<p style="padding-left: 30px;"><img class="alignnone size-full wp-image-856" title="SD Times Screenshot" src="http://www.webmastersbydesign.com/wp-content/uploads/2008/08/sdtimes_screenshot.jpg" alt="" width="432" height="177" /></p>
<p style="padding-left: 30px;">SD Times reports on content related to programmers and developers. In both a print version and online, SD Times has over 60,000 subscribers. They report on recent news and stories, write columns and opinions, as well as providing a job board and resource center. This publication reads more as a newspaper than a magazine.</p>
<h3><strong><a title="Dr. Dobb's Journal" href="http://www.ddj.com/" onclick="pageTracker._trackPageview('/outgoing/www.ddj.com/?referer=');">Dr. Dobb's Journal</a></strong></h3>
<p style="padding-left: 30px;"><img class="alignnone size-full wp-image-858" title="Dr. Dobb\'s Portal Screenshot" src="http://www.webmastersbydesign.com/wp-content/uploads/2008/08/drdobbsportal_screenshot.jpg" alt="" width="440" height="177" /></p>
<p style="padding-left: 30px;">Dr. Dobb's Journal is another publication both in print and online. They offer information from a variety of different programming and development topics. Some topics include databases, open source, security, web development, and specific programming languages like C/C++ and Java. They also have a resource center and a blog full of information as well.</p>
<h3><strong><a title="Developer.* Magazine" href="http://www.developerdotstar.com/" onclick="pageTracker._trackPageview('/outgoing/www.developerdotstar.com/?referer=');">Developer.* Magazine</a></strong></h3>
<p style="padding-left: 30px;"><img class="alignnone size-full wp-image-861" title="Developer.* Screenshot" src="http://www.webmastersbydesign.com/wp-content/uploads/2008/08/developerdotstar_screenshot.jpg" alt="" width="440" height="177" /></p>
<p style="padding-left: 30px;">Developer.* offers articles, blogs, and book reviews for all things development and programming. There articles are broken down by categories ranging from software design and quality to legal issues and techniques. The articles are well written, the information is great, and the information is very thorough.</p>
<h3 style="text-align: justify;"><strong><strong><a title=".Net Magazine" href="http://www.netmag.co.uk/" onclick="pageTracker._trackPageview('/outgoing/www.netmag.co.uk/?referer=');">.Net Magazine</a></strong></strong></h3>
<h3 style="text-align: justify; padding-left: 30px;"><img class="alignnone size-full wp-image-904" title=".Net Magazine" src="http://www.webmastersbydesign.com/wp-content/uploads/2008/08/dotnet-magazine.jpg" alt="" width="439" height="177" /></h3>
<p style="padding-left: 30px;">.Net Magazine is both in print and online. They offer articles to help developer, discover, and design. They also have podcasts and forums filled with content. They cover topics ranging from flash to CSS to Facebook.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webmastersbydesign.com/2008/08/29/10-online-magazines-for-developers-and-designers/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
