<?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>Tue, 21 May 2013 16:56:53 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Matt Wilkin's Blog:  Yahoo Job Interview Questions (and Answers) Parts 1 & 2]]></title>
      <guid>http://www.phpdeveloper.org/news/8550</guid>
      <link>http://www.phpdeveloper.org/news/8550</link>
      <description><![CDATA[<p>
In a response of sorts to <a href="http://blog.assembleron.com/2007/05/23/php-interview-questions-from-yahoo/">these interview questions</a> posted by <i>Nick Halstead</i>, <i>Matt Wilkin</i> took the next step and worked up the answers for the questions in a new two-part series.
</p>
<blockquote>
Well at another <a href="http://blog.assembleron.com/2007/05/23/php-interview-questions-from-yahoo/">blog</a> they shared some pre-interview questions from Yahoo for a PHP job. The only problem is they never provided the answers. So that's what I'm going to do now.
</blockquote>
<p>
<a href="http://blog.assembleron.com/2007/05/23/php-interview-questions-from-yahoo/">Part one</a> answers questions one through eleven and the <a href="http://www.search-this.com/2007/08/27/yahoo-job-interview-questions-part-2/">second part</a> wraps things up with the answers for questions twelve through twenty-two.
</p>]]></description>
      <pubDate>Wed, 29 Aug 2007 10:29:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Zend Developer Zone: Blueprint for PHP Applications - Bootstrapping (Part 2)]]></title>
      <guid>http://www.phpdeveloper.org/news/5111</guid>
      <link>http://www.phpdeveloper.org/news/5111</link>
      <description><![CDATA[The <i>Jayson Minard</i> continues his "Blueprint for PHP Applications" series on the Zend Developer Zend today in <a href="http://devzone.zend.com/node/view/id/119">part two</a>, a look at creating and setting up the "bootstrapper" file mentioned <a href="http://www.phpdeveloper.org/news/5080">previously</a>.
<p>
<quote>
<i>
In Part 1 of this article I talked a lot about funneling. Sending every request to one PHP file that then controls the flow of the request into our application code. This one PHP file is called the "Bootstrapper" and deals with everything in common for every request our application receives. The bootstrapper can setup, configure and gift wrap everything that all pages have in common. It can make sure the include path is setup correctly, that the environment is configured correctly, all PHP settings are set, that common model objects are loaded, and that the front controller is invoked to begin your MVC processing. 
<p>
If you setup the bootstrapper correctly your application code will be more manageable and consistent, along with being easier to write in the first place.
</i>
</quote>
<p>
They <a href="http://devzone.zend.com/node/view/id/119">focus</a> on teh directory structure in this part, demonstrating the correct structure, how to set the .htaccess to coordinate with it, and the creation of a simple PHP file to handle all incoming requests.]]></description>
      <pubDate>Wed, 05 Apr 2006 07:40:52 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Zend Developer Zone: Blueprint for PHP Applications - Bootstrapping (Part 1)]]></title>
      <guid>http://www.phpdeveloper.org/news/5080</guid>
      <link>http://www.phpdeveloper.org/news/5080</link>
      <description><![CDATA[From the Zend Developer Zone today, there's the continuation of their "Blueprint for PHP Applications" series, this time <a href="http://devzone.zend.com/node/view/id/70">focusing on bootstrapping</a> (part 1). 
<p>
<quote>
<i>
The <a href="http://en.wikipedia.org/wiki/Bootstrapping">definition (of bootstrapping) from Wikipedia</a> has more flair to it than I can probably give this article, but nonetheless bootstrapping is an incredibly important part of a PHP web application. It is the ignition, the launch-pad, the booster rockets, and even the safety gear for our trip through PHP Best Practices. Without a well designed bootstrap, our application will never get off the ground.
</i>
</quote>
<p>
The general idea behind the bootstrapping is forcing all of the requests to a domain to be funneled through a central script and branching out from there. They <a href="http://devzone.zend.com/node/view/id/70">talk about</a> how to use Rewrite rules to accomplish this and how to set the setup. He finishes the post off by bringing it back to <a href="http://www.flickr.com/photos/jminard/112539972/">the layout</a> of the application, pointing out where it fits in.]]></description>
      <pubDate>Fri, 31 Mar 2006 07:23:08 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[PHPBuilder.com: Using XML - A PHP Developer's Primer (Part 3)]]></title>
      <guid>http://www.phpdeveloper.org/news/5041</guid>
      <link>http://www.phpdeveloper.org/news/5041</link>
      <description><![CDATA[For those of you that have been following along, PHPBuilder.com has posted the <a href="http://www.phpbuilder.com/columns/adam_delves20060322.php3">third and final part</a> of their "Using XML: A PHP Developer's Primer" series. Even if you haven't been keeping up, it's worth a look.
<p>
In <a href="http://www.phpbuilder.com/columns/adam_delves20060322.php3">this edition</a>, they look at more advanced topics - a deeper look at Ajax and how to style the data you get back with XSL, both on the client and sever.
<p>
To start, they look at XSL - what it is, how it's used, and some code examples of both the XML and XSL structures to style XML data into a valid HTML page. Of course, you'll need the PHP extension to get this all working, so they step you through the installation/enabling of that as well.
<p>
They <a href="http://www.phpbuilder.com/columns/adam_delves20060322.php3">touch on other topics</a> (like passing variables to a stylehseet and XSLT in Javascript) before getting to a simple XSLT and Ajax example - pulling book data and formating it with examples of both the PHP and Javascript sides.]]></description>
      <pubDate>Fri, 24 Mar 2006 07:04:06 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Justin Silverton's Blog:  PHP Security Mistakes - Part 2]]></title>
      <guid>http://www.phpdeveloper.org/news/5022</guid>
      <link>http://www.phpdeveloper.org/news/5022</link>
      <description><![CDATA[<i>Justin Silverton</i> continues his "PHP Security Mistakes" series with <a href="http://blinduser.blogspot.com/2006/03/php-security-mistakes-part-2.html">this new post</a>, looking at issues surrounding system calls, file uploads, and including files into your scripts.
<p>
<quote>
<i>
In one of my previous articles, I mentioned the top 5 security mistakes made in PHP. This article is a follow-up, with some more common security mistakes.
</i>
</quote>
<p>
For the <a href="http://blinduser.blogspot.com/2006/03/php-security-mistakes-part-2.html">three topics</a> he describes the functionality PHP offers for them as well as a suggestion or two as to how you can prevent these issues from showing up in your scripts. ]]></description>
      <pubDate>Tue, 21 Mar 2006 06:56:49 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[PHPBuilder.com: Using XML - A PHP Developer's Primer, Part 2]]></title>
      <guid>http://www.phpdeveloper.org/news/4905</guid>
      <link>http://www.phpdeveloper.org/news/4905</link>
      <description><![CDATA[On PHPBuilder.com today, there's the <a href="http://www.phpbuilder.com/columns/adam_delves20060224.php3">second part</a> in their "Using XML: A PHP Developer's Primer" series.
<p>
<quote>
<i>
In the <a href="http://www.phpbuilder.com/columns/adam_delves20060206.php3">first part</a> of this series, we took a look at how PHP 5 can be used to manipulate and parse XML files. In this installment, we are going to focus on Ajax, one of the most useful and topical applications of XML.
<p>
Initially, we are going to introduce Ajax and learn how to use the XMLHTTP object provided by most modern web browsers to create a live email validation form. Then we will pick up where we left off with the theme of XML and introduce XSLT, which we will use to transform our library XML from the previous article into valid XHTML code.
</i>
</quote>
<p>
They <a href="http://www.phpbuilder.com/columns/adam_delves20060224.php3">jump immediately in</a>, starting with the "what is Ajax?" question to provide a good base. The sample application that they help you build to work up your Ajax skills is an email validation app that checks the user's entry as they're putting it in. Of course, all of the PHP and Javascript code that you'll need is provided.]]></description>
      <pubDate>Mon, 27 Feb 2006 09:22:50 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[DevShed: Error Handling in PHP - Introducing Exceptions in PHP 5]]></title>
      <guid>http://www.phpdeveloper.org/news/4690</guid>
      <link>http://www.phpdeveloper.org/news/4690</link>
      <description><![CDATA[Today, Devshed as posted the <a href="http://www.devshed.com/c/a/PHP/Error-Handling-in-PHP-Introducing-Exceptions-in-PHP-5/">second and last</a> part in their "Error Handling in PHP" series - Introducing Exceptions in PHP 5.
<p>
<quote>
<i>
Welcome to the last part of the series "Error Handling in PHP." In two parts, this series introduces the basics of error handling in PHP. It demonstrates some of the most common methods for manipulating errors in PHP 4, and explains the implementation of exceptions in PHP 5, particularly in object-oriented environments.
</i>
</quote>
<p>
They <a href="http://www.devshed.com/c/a/PHP/Error-Handling-in-PHP-Introducing-Exceptions-in-PHP-5/">introduce</a> things like try/catch blocks as well as more complex items like custom exceptions and exception subclassing. They start with the basics, but quickly move into grabbing more detailed error information, working with the various error types, and extending the Exception class with subclasses to make it more flexible...]]></description>
      <pubDate>Thu, 19 Jan 2006 06:53:22 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Clickablebliss.com: PHP vs Ruby on Rails (Parts 1 & 2)]]></title>
      <guid>http://www.phpdeveloper.org/news/4567</guid>
      <link>http://www.phpdeveloper.org/news/4567</link>
      <description><![CDATA[Via <a href="http://www.nexen.net/news/gen.php/2005/12/27/4891,0,0,0,0.php">this new post</a> on Nexen.net today, there's a pointer to a two-part article from Clickablebliss.com comparing PHP and Ruby on Rails.
<p>
<quote>
<i>
Over the last few weeks, I've been asked by both friends and clients, "So what is that thing called <a href="http://www.rubyonrails.org/">Rails</a> I keep hearing about (and/or keep hearing you talk about)? How is it different from <a href="http://www.php.net/">PHP</a>?" Typically I give them a three-part answer that'll I'll now iterate for the blog. While this is far from a complete comparison, hopefully it will be useful to some people out there.
</i>
</quote>
<p>
In <a href="http://clickablebliss.com/blog/2005/12/24/php_vs_ruby_on_rails_part_1/">Part One</a>, they look at the major difference between the two - one being and language, the other a framework. They also mention how something simple, like templating, is handled on either side.
<p>
<a href="http://clickablebliss.com/blog/2005/12/26/php_vs_ruby_on_rails_part_2/">Part Two</a> focuses more on Ruby, the language, itself - what it is, its use of objects, and a comparison of the same to what PHP has to offer.]]></description>
      <pubDate>Tue, 27 Dec 2005 12:03:39 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Performancing.com: HOW TO - Customize WordPress (Part 2)]]></title>
      <guid>http://www.phpdeveloper.org/news/4525</guid>
      <link>http://www.phpdeveloper.org/news/4525</link>
      <description><![CDATA[Via <a href="http://www.trachtenberg.com/blog/2005/12/17/how-to-customize-wordpress-part-2/">Adam Trachtenburg's site</a> today, there's <a href="http://performancing.com/node/429">part two</a> of a series over on Performancing.com about customizing Wordpress.
<p>
<quote>
<i>
As promised in <a href="http://performancing.com/node/407">Part One of How To Customize WordPress</a>, this time I thought I would attempt to see how simple it can be to tweak an existing WordPress template using some CSS.
<p>
A lot of the more frequently used existing blog templates have only a 2 Column design, and are quite narrow at that so trying to get some whitespace and an extra column into one of them is the challenge I set myself. 
</i>
</quote>
<p>
She <a href="http://performancing.com/node/429">talks about some tools</a> she's using to make the changes (all cross-platform) and dives right in, using the WebDev Toolbar to locate items and their IDs to make updating them easy. From there's it's all CSS and HTML updates in the rest of this lengthy tutorial...]]></description>
      <pubDate>Mon, 19 Dec 2005 07:19:46 -0600</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>
