<?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>Mon, 20 May 2013 02:07:10 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Matthew Weier O'Phinney's Blog: Why Modules?]]></title>
      <guid>http://www.phpdeveloper.org/news/17887</guid>
      <link>http://www.phpdeveloper.org/news/17887</link>
      <description><![CDATA[<p>
<i>Matthew Weier O'Phinnney</i> has a new post to his blog filling in some additional details behind a series he's been doing on modules in the Zend Framework v2 releases. In <a href="http://mwop.net/blog/2012-04-30-why-modules.html">this new post</a> he answers the question "why modules?"
</p>
<blockquote>
I've blogged about <a href="http://mwop.net/blog/267-Getting-started-writing-ZF2-modules.html">getting started with ZF2 modules</a>, as well as <a href="http://mwop.net/blog/zf2-modules-you-can-use-today.html">about ZF2 modules you can already use</a>. But after fielding some questions recently, I realized I should talk about why modules are important for the ZF2 ecosystem.
</blockquote>
<p>
He covers some of the history of the idea, starting with the MVC rework/refactor of the framework and the desire from several people to have self-contained components that could be native to a ZF app. ZFv1 made it work (kinda) with Zend_Application, but it was difficult so solving this became a main focus of ZFv2. He illustrates with a "building block" metaphor based on his current blog site (currently being refactored too).
</p>
<blockquote>
This kind of building-block development makes your job easier as a developer - and allows you to focus on the bits and pieces that make your site unique. As such, I truly feel that modules are the most important new feature of ZF2.
</blockquote>]]></description>
      <pubDate>Tue, 01 May 2012 08:04:20 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Anthony Ferrara's Blog: In Response To: Building Secured Web Applications Using PHP - The Basics]]></title>
      <guid>http://www.phpdeveloper.org/news/16529</guid>
      <link>http://www.phpdeveloper.org/news/16529</link>
      <description><![CDATA[<p>
In a response to <a href="http://phpdeveloper.org/news/16517">this post</a> that introduced some basic security methods for your applications, <i>Anthony Ferrara</i> has <a href="http://blog.ircmaxell.com/2011/06/in-response-to-building-secured-web.html">posted some corrections</a> and updates to the suggested methods, even pointing out where some of them are completely wrong.
</p>
<blockquote>
Today an article popped into my feed reader that raise my eyebrows.  The article's title is "<a href="http://noobcode.blogspot.com/2011/05/building-secured-web-applications-using.html">Building Secured Web Applications Using PHP - The Basics</a>".  The summary of the item looked interesting, so I decided to open it up...What I found blew me away.  It was filled with loads of bad information including some down-right wrong suggestions.  Let me go through point by point and shed some light on the subject...
</blockquote>
<p>
<a href="http://blog.ircmaxell.com/2011/06/in-response-to-building-secured-web.html">His response</a> goes back through the original article by section header and explains either why the advice was bad and/or the more correct way to do things.
</p>
<blockquote>
Security is not something you can learn in a page.  It's not something that you can learn in a single book.  It takes a lot of time and effort.  It should not be trivialized into a simple "Do this and you'll be secure" style post.  It sends the wrong message...
</blockquote>]]></description>
      <pubDate>Tue, 28 Jun 2011 11:15:10 -0500</pubDate>
    </item>
    <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>
