<?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>Sat, 22 Nov 2008 01:00:08 -0600</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Alison Holloway's Blog: PHP 5.2.2 Setup on Windows]]></title>
      <guid>http://www.phpdeveloper.org/news/7854</guid>
      <link>http://www.phpdeveloper.org/news/7854</link>
      <description><![CDATA[<p>
In her blog today, <i>Alison Holloway</i> offers a <a href="http://blogs.oracle.com/alison/2007/05/16#a51">quick tip</a> for developers out there trying to install PHP 5.2.2 on their Windows machine and running into trouble. Maybe it's the same issue?
</p>
<blockquote>
I've just been setting up PHP 5.2.2 on Windows XP Pro, with Apache 2.0.59. I couldn't get Apache to find the correct php.ini file. It was looking in C:Windows, instead of where I installed PHP. The httpd.conf file told Apache to look in C:Program FilesPHP, but it wasn't. So none of the extensions were loading.
</blockquote>
<p>
The problem? She wasn't putting in the right kind of slashes into her configuration file. It couldn't find the right path because of it. The issue isn't mentioned in the <a href="http://www.phpdeveloper.org/news/7839">latest version</a> of the Underground PHP and Oracle Manual (but will be in the future).
</p>]]></description>
      <pubDate>Wed, 16 May 2007 11:19:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Davey Shafik's Blog: A Year in Review (2006)]]></title>
      <guid>http://www.phpdeveloper.org/news/6996</guid>
      <link>http://www.phpdeveloper.org/news/6996</link>
      <description><![CDATA[<p>
In <a href="http://pixelated-dreams.com/archives/279-A-Year-in-Review.html">his latest blog post</a> <i>Davey Shafik</i> takes a look back at this past year, 2006, and some of the happenings he experienced during that time.
</p>
<blockquote>
The yearly look back is now a tradition in the PHP community, I decided this year to lead the pack instead of just hopping on the bandwagon. Of course, it's not official until <a href="http://www.derickrethans.nl/">Derick</a> provides his excellent look back on internals.
</blockquote>
<p>
There's <a href="http://pixelated-dreams.com/archives/279-A-Year-in-Review.html">mentions of</a> his work with the Zend Framework, his book (the Zend Study Guide), and much more. Check out the full post if you'd like to catch up...
</p>]]></description>
      <pubDate>Fri, 29 Dec 2006 09:36:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Sara Golemon's Blog: PHP-2006: A look back]]></title>
      <guid>http://www.phpdeveloper.org/news/6992</guid>
      <link>http://www.phpdeveloper.org/news/6992</link>
      <description><![CDATA[<p>
<i>Sara Golemon</i> has posted <a href="http://blog.libssh2.org/index.php?/archives/48-PHP-2006-A-look-back.html">her own look back</a> at the year of 2006 in the PHP:
</p>
<blockquote>
Well, <a href="http://pixelated-dreams.com/">Davey Shafik</a> started us off with <a href="http://pixelated-dreams.com/archives/279-A-Year-in-Review.html">his year-end wrapup</a> so I'll follow suit with mine. The thoughts below are mine and mildly influenced by alcohol. They represent a foggy review of how I experienced the year through the imperfect recollection of mailing list archives.
</blockquote>
<p>
She <a href="http://blog.libssh2.org/index.php?/archives/48-PHP-2006-A-look-back.html">covers each month</a>, looking at the people, events, and releases that happened in each. Lots of activity happened on the mailing lists mirroring the happenings in the rest of the PHP community. Check out her great post for the full happenings of the year.
</p>]]></description>
      <pubDate>Fri, 29 Dec 2006 06:44:56 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[IBM developerWorks: Developing PHP the Ajax way, Part 2 - Back, Forward, Reload]]></title>
      <guid>http://www.phpdeveloper.org/news/5541</guid>
      <link>http://www.phpdeveloper.org/news/5541</link>
      <description><![CDATA[<p>
IBM developerWorks has posted <a href="http://www-128.ibm.com/developerworks/opensource/library/os-php-rad2/">the second part of their series</a> covering the development of PHP and Ajax to create a photo gallery application. In this part, they work off of the gallery already created in <a href="http://www.phpdeveloper.org/news/5489">part one</a>, taking care of one issue that plagues Ajax application - the breaking of the back button.
</p>
<quote>
<i>
A major challenge of Asynchronous JavaScript and XML (Ajax)-driven Web sites is the lack of a Back button. We will use JavaScript to create a history stack for the Ajax photo gallery built in Part 1 of this two-part "<a href="http://www.ibm.com/developerworks/views/opensource/libraryview.jsp?search_by=developing+php+ajax+way">Developing PHP the Ajax way</a>" series. This history stack will closely mirror the history utility found in Web browsers, and it will be used to provide Back, Forward, and Reload buttons for the application.
</i>
</quote>
<p>
They <a href="http://www-128.ibm.com/developerworks/opensource/library/os-php-rad2/">start</a> with a look at what it means to "save state" in the browser, including the use of the Back button to navigate between pages. Seeing that Ajax breaks this, they move ahead with a simple solution - creating an internal history stact for the application and use its own navigation methods. They provide some examples images to use and all of the code you'll need to accomplish this. 
</p>
<p>
They create a class using the popular <a href="http://prototype.conio.net/">Prototype</a> javascript library to create functions like do_add, do_back, and do_forward to correctly handle the adding and deleting of the items from the stack. Once that script is developed, they take and integrate it back with the photo gallery from <a href="http://www.phpdeveloper.org/news/5489">part one</a>.
</p>]]></description>
      <pubDate>Thu, 08 Jun 2006 06:04:23 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Des Traynor's Blog: I hated php back when it was cool]]></title>
      <guid>http://www.phpdeveloper.org/news/4889</guid>
      <link>http://www.phpdeveloper.org/news/4889</link>
      <description><![CDATA[<i>Des Traynor</i> shares some of his opinions on PHP in his <a href="http://www.minds.may.ie/~dez/serendipity/index.php?/archives/51-I-hated-php-back-when-it-was-cool.html">latest blog post</a> - "I hated php back when it was cool".
<p>
<quote>
<i>
This is a short smug entry, written in the  "Yeah, well I liked them before they even had a record deal" style associated with trend snobs. Except in this case, its the opposite, I am claiming that I hated something back when it was cool. Thanks to blogging my opinion earlier, I even have proof! PHP should stand for Pretty Huge Problem.
</i>
</quote>
<p>
He <a href="http://www.minds.may.ie/~dez/serendipity/index.php?/archives/51-I-hated-php-back-when-it-was-cool.html">mentions</a> some of the rants, langauge switchers, and general complaints that have come up about PHP, including the combination of code and HTML, the "safe mode" feature, and PHP's "battered on" nature of development. He also goes off a bit on the (inevitable) backlash that Rails and Ajax will see in the future, and wonders how far off it will be.]]></description>
      <pubDate>Thu, 23 Feb 2006 07:26:24 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[PHPit.net: Back to basics - PHP & Arrays]]></title>
      <guid>http://www.phpdeveloper.org/news/4645</guid>
      <link>http://www.phpdeveloper.org/news/4645</link>
      <description><![CDATA[PHPit.net goes "back to the basics" today with <a href="http://www.phpit.net/article/back-to-basics-arrays/">this new post</a> - a look at the basics of how PHP handles arrays and how to use them effectively.
<p>
<quote>
<i>
Lately the internet has been on a real fast track, and there have been many new developments, like Ajax, Web 2.0, Tags, and other interesting (and often hyped up) things. But this tutorial won't go there at all, and goes back to the beginning with the basics: using arrays in PHP.
<p>
If you're a seasoned PHP developer, who knows arrays like the back of his hand, this might be an article you'd want to skip. But if you're still unsure how arrays work, or if you're just curious about a few things, read on and learn more about arrays in PHP.
</i>
</quote>
<p>
This is a <a href="http://www.phpit.net/article/back-to-basics-arrays/">very basic article</a>, and doesn't give much in the way of any "array tricks" either. Array functions aren't even covered (mostly) - just how to create and update arrays in your code. But for a beginner, that's all you need...]]></description>
      <pubDate>Wed, 11 Jan 2006 06:55:49 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Robert Peake's Blog: Where is PHP Going?]]></title>
      <guid>http://www.phpdeveloper.org/news/4591</guid>
      <link>http://www.phpdeveloper.org/news/4591</link>
      <description><![CDATA[<i>Robert Peake</i> has <a href="http://www.robertpeake.com/archives/135-Where-is-PHP-going.html">a new post</a> today with a brief look at where PHP has come from and some of his opinions on the future of PHP in 2006.
<p>
<quote>
<i>
We saw the release of PHP 5.1, the renaming of the CSV trunk to 6.0 (in attempts to beat Perl to the punch, apparently), massive security concerns raised by applications ranging from phpBB to Mambo, Zend's numerous partnerships and announcement of the Zend framework, great improvements to Pear, more conferences, more enthusiasm, more realization from the enterprise that PHP is where web application development is headed.
<p>
So, where is PHP going from here?
</i>
</quote>
<p>
He <a href="http://www.robertpeake.com/archives/135-Where-is-PHP-going.html">predicts</a> that the increased push Zend is making for the framework will continue to help improve PHP's image, especially with some of the hurdles PHP has to overcome (including security issues and getting past other lingering problems from PHP's past).]]></description>
      <pubDate>Mon, 02 Jan 2006 07:19:27 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Derick Rethans' Blog: PHP Look Back 2005]]></title>
      <guid>http://www.phpdeveloper.org/news/4590</guid>
      <link>http://www.phpdeveloper.org/news/4590</link>
      <description><![CDATA[<i>Derick Rethans</i> has posted his <a href="http://derickrethans.nl/php_look_back_2005.php">own look back</a> at all of the happenings that went on back in 2005.
<p>
<quote>
<i>
Welcome to the fourth installment of the PHP Look Back. Just as in previous years, we'll look back on PHP development discussions, bloopers and accomplishments of the last year. This is not supposed to be a fully objective review of last year--note that the opinions in this article are that of the author, and not of the PHP development team.
</i>
</quote>
<p>
He <a href="http://derickrethans.nl/php_look_back_2005.php">covers each month</a>, giving the happenings for each month, linking to various posts and items in each one. Most of the things discussed are more related to the internal PHP development and discusssions from the mailing lists.]]></description>
      <pubDate>Mon, 02 Jan 2006 07:08:04 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Site News: A (Lengthy) Look Back at PHP in 2005]]></title>
      <guid>http://www.phpdeveloper.org/news/4586</guid>
      <link>http://www.phpdeveloper.org/news/4586</link>
      <description><![CDATA[In an effort to know where the PHP community has been (and where it will be going), I've posted <a href="http://blog.phpdeveloper.org/?p=25">this lengthy summary</a> over on our blog today with a look back at what made up 2005 for all of the PHPers out there.
<p>
<quote>
<i>
Well, here it is, the end of another year and it's times like thes ethat it's always fun to take a look back to where we've come from and how far we've made it on various projects. The PHP community has come so far from those early days of January, and I thought I'd take my own look back via some of the news posts that I've made over on PHPDeveloper.org in the past year (almost 2000 of em) and see which ones stuck out. So, bear with me on this - I know I'll miss a few of the biggies, but I'm going to try to highlight things in each month that really effected the community as a whole.
</i>
</quote>
<p>
So, <a href="http://blog.phpdeveloper.org/?p=25">enjoy the read</a> - most of the highlights are there (as well as a few of the problems that happened along the way). Hope you enjoy - and have a happy new year!]]></description>
      <pubDate>Sat, 31 Dec 2005 12:32:31 -0600</pubDate>
    </item>
  </channel>
</rss>
