<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Fri, 09 Jan 2009 22:24:08 -0600</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Stefan Mischook's Blog: Building Objects Video (Parts 1, 2 & 3)]]></title>
      <guid>http://www.phpdeveloper.org/news/8618</guid>
      <link>http://www.phpdeveloper.org/news/8618</link>
      <description><![CDATA[<p>
<i>Stefan Mischook</i> has release three new parts of his "Building Objects in PHP" video series:
</p>
<ul>
<li><a href="http://www.killerphp.com/articles/new-video-building-objects-in-php/">Part 1</a> - This is a hands-on video where I hope the viewer will actually write code along with me. I want to stress that this video (like everything else on this site,) targets beginners .. not old PHP hacks.
<li><a href="http://www.killerphp.com/articles/building-objects-in-php-part-2/">Part 2</a> - In this video, we actually use the object we created in Part 1, in our PHP page.
<li><a href="http://www.killerphp.com/articles/building-objects-in-php-part-3/">Part 3</a> - In this video, I clarify a point I was trying to make in part 2. In a nutshell, I talk about why it makes sense to keep any page rendering code (HTML and CSS) out of your business logic classes.
</ul>
<p>
Lots of other videos (on different topics too) are also <a href="http://www.killerphp.com/articles/category/php-videos/">posted on Stefan's website</a>.
</p>]]></description>
      <pubDate>Mon, 10 Sep 2007 09:32:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[WebReference.com: The Building Blocks: Data Types, Literals, Variables, and Constants - Part 3]]></title>
      <guid>http://www.phpdeveloper.org/news/7180</guid>
      <link>http://www.phpdeveloper.org/news/7180</link>
      <description><![CDATA[<p>
WebReference.com has <a href="http://www.webreference.com/programming/php/by_example3/">posted part three</a> of their "Building Blocks" series - a look at data types, literals, variables, and constants.
</p>
<p>
In part three, they focus more on the last type of "block" in their list - the constant:
</p>
<blockquote>
Some real-world constants, such as pi, the speed of light, the number of inches in a foot, and the value of midnight, are values that don't change. PHP not only provides its own predefined constants but lets you create your own. Using constants makes it easy to write and maintain your programs.
</blockquote>
<p>
There's <a href="http://www.webreference.com/programming/php/by_example3/">talk of</a> the define() and constant() functions and a mention of some of the predefined and "magic constants" as well.
</p>]]></description>
      <pubDate>Mon, 29 Jan 2007 11:44:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[WebReference.com: The Building Blocks: Data Types, Literals, Variables, and Constants - Part 2]]></title>
      <guid>http://www.phpdeveloper.org/news/7139</guid>
      <link>http://www.phpdeveloper.org/news/7139</link>
      <description><![CDATA[<p>
WebReference.com has posted <a href="http://www.webreference.com/programming/php/by_example2/index.html">part two in a series</a> looking at the "building blocks" that make up PHP and its use. This time, it's a look at the containers for your data - the data types, literals, variables, and constants.
</p>
<p>
They go through each, explaining what they are, how they're used and when you'd want to use them in your code. They explain the data types and how those fit with each "container" and some basic things like valid names and how to assign things correctly.
</p>
<p>
They even get <a href="http://www.webreference.com/programming/php/by_example2/index.html">get into</a> working with variables from GET and POST requests as well as working with the scope of variables and getting the metadata about them (is it an integer? is it empty?)
</p>]]></description>
      <pubDate>Mon, 22 Jan 2007 09:52:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[PHPMac.com: Building and Installing Apache 2.2.2 and PHP 5.1.4 on Mac OS X 10.4.6]]></title>
      <guid>http://www.phpdeveloper.org/news/5357</guid>
      <link>http://www.phpdeveloper.org/news/5357</link>
      <description><![CDATA[<p>
Just to keep things up to date, PHPMac.com has posted <a href="http://www.phpmac.com/articles.php?view=252">this new tutorial</a> on getting Apache 2.2.2 and PHP 5.1.4 compiled and working on Mac OS X 10.4.6.
</p>
<quote>
<i>
For anyone that has been wishing to switch to Apache 2 on their Mac, this is the time to do it. PHP 5 has also recently been updated to 5.1.3 and this tutorial describes in detail, the best method to both build and install these programmes on your Mac.
</i>
</quote>
<p>
There's <a href="http://www.phpmac.com/articles.php?view=252">compile and install directives</a> for each of the pieces of software, and even a question about libxml there at the end for those having installation issues with it.
</p>]]></description>
      <pubDate>Thu, 11 May 2006 20:12:52 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[PHPit.net: Building an advertising system with PHP (Part 3)]]></title>
      <guid>http://www.phpdeveloper.org/news/4524</guid>
      <link>http://www.phpdeveloper.org/news/4524</link>
      <description><![CDATA[PHPit.net has posted the <a href="http://www.phpit.net/article/building-advertising-system-part3/">third part</a> in their "Building an advertising system with PHP" series today. 
<p>
<quote>
<i>
Welcome to part 3 of the "Building an advertising system with PHP" series. In the previous parts (<a href="http://www.phpit.net/article/building-advertising-system-part1/">part 1</a> and <a href="http://www.phpit.net/article/building-advertising-system-part2/">part 2</a>) I have shown you how to build your own advertising system using PHP and JavaScript. We've also added two extra features to our ad system and in part 2 we built a page to manage the ads as well. If you haven't read either part yet, I highly recommend doing so before reading this part.
<p>
In this part, the final part of the series, I will show you how to first track all kinds of statistics on each ad, and after that display neat graphs using PHP/SWF Charts. Let's get started.
</i>
</quote>
<p>
Now that the front even of the system is all set up, they <a href="http://www.phpit.net/article/building-advertising-system-part3/">help you create the backend</a> - gathering data, analyzing the traffic, and creating the graphs to map out the results. It'll require <a href="http://www.maani.us/charts/index.php>an extra library</a> to make the results, but it's a pretty simple installation...]]></description>
      <pubDate>Mon, 19 Dec 2005 07:14:19 -0600</pubDate>
    </item>
  </channel>
</rss>
