<?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, 08 Sep 2008 05:29:46 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[php|architect: Announcing our new Magento book]]></title>
      <guid>http://www.phpdeveloper.org/news/10057</guid>
      <link>http://www.phpdeveloper.org/news/10057</link>
      <description><![CDATA[<p>
php|architect has <a href="http://c7y.phparch.com/c/entry/1/news,20080428-new_magento_book">announced the release</a> of a new book - the Guide to Programming Magento, now up for preorder:
</p>
<blockquote>
We're happy to announce the upcoming release of <a href="http://phparch.com/c/books/id/9780973862171">php|architect's Guide to Programming Magento</a>, the first comprehensive guide for developers who want to learn more about the Magento e-commerce platform.
</blockquote>
<p>
The book, by <i>Mark Kimsal</i> shows you how to install and successfully deploy a <a href="http://www.magentocommerce.com/">Magento</a> installation on your website. The preorder is available right now for a 15% discount and the full PDF version will be released on May 15th, 2008 (print on May 31st). Check out <a href="http://phparch.com/c/books/id/9780973862171">the product page</a> for more information and to reserve your copy today.
</p>]]></description>
      <pubDate>Mon, 28 Apr 2008 13:43:41 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[PHP in Action Blog: PHP in Action Book in Print]]></title>
      <guid>http://www.phpdeveloper.org/news/8332</guid>
      <link>http://www.phpdeveloper.org/news/8332</link>
      <description><![CDATA[<p>
The PHP in Action blog has a <a href="http://www.reiersol.com/blog/index.php?op=ViewArticle&articleId=23&blogId=1">new note</a> about something that's been a long time coming - the release of the <a href="http://www.manning.com/reiersol">print version</a> of their book.
</p>
<blockquote>
Again a somewhat belated announcement: PHP in Action is in print. [...] Strenuously objective as always, I have to say that it's a pretty good book. I've had to read it about fifteen times already, and I still sort of enjoyed it the last time. 
</blockquote>
<p>
You can get more information on the book from <a href="http://www.manning.com/reiersol/">its page</a> on the Manning Publishing website as well as purchase a copy - $39.99 USD for the print version (plus PDF ebook) or just $20.00 USD for the PDF ebook by itself.
</p>]]></description>
      <pubDate>Thu, 26 Jul 2007 07:05:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Community News: PHP in Action Book Released]]></title>
      <guid>http://www.phpdeveloper.org/news/8175</guid>
      <link>http://www.phpdeveloper.org/news/8175</link>
      <description><![CDATA[<p>
In a <a href="http://www.reiersol.com/blog/index.php?op=ViewArticle&articleId=19&blogId=1">note from the PHP in Action blog</a>, they point out the <a href="http://www.manning.com/reiersol">release of their ebook</a> in PDF format:
</p>
<blockquote>
Manning Publications has released the book <a href="http://www.manning.com/reiersol">PHP In Action</a> as ebook in PDF format. I wrote it with help from my co-authors <a href="http://www.lastcraft.com/">Marcus Baker</a> and <a href="http://shiflett.org/">Chris Shiflett</a>. The print version is due out June 30.
</blockquote>
<p>
You can order both the ebook only or a combo of the ebook plus the print version <a href="http://www.manning.com/reiersol/">directly from Manning</a>. 
</p>]]></description>
      <pubDate>Tue, 03 Jul 2007 15:23:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[JSLabs Blog:  5 cool things you can do with Windows and PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/7973</guid>
      <link>http://www.phpdeveloper.org/news/7973</link>
      <description><![CDATA[<p>
On the JSLabs website, <i>Justin Silverton</i> has posted <a href="http://www.whenpenguinsattack.com/2007/06/04/5-cool-things-you-can-do-with-windows-and-php/">five cool things</a> that you can do with PHP in a Windows environment:
</p>
<blockquote>
Many PHP examples out there are designed for a linux/unix operating system. I am going to give some examples of some interesting functionality that only works with php running in a windows environment (IIS or apache).
</blockquote>
<p>
Here's the list:
</p>
<ul>
<li>Eject the CD-ROM
<li>Read and write from/to the registry
<li>Register and un-register phpscripts as a windows service
<li>Print pages/data
<li>List the current system processes
</ul>
<p>
Each item has sample code and a simple explanation to get you started using it.
</p>]]></description>
      <pubDate>Tue, 05 Jun 2007 09:22:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[DevShed: Working with CSS Styles and the Stage Pattern in PHP 5]]></title>
      <guid>http://www.phpdeveloper.org/news/7708</guid>
      <link>http://www.phpdeveloper.org/news/7708</link>
      <description><![CDATA[<p>
In the <a href="http://www.devshed.com/c/a/PHP/Working-with-CSS-Styles-and-the-Stage-Pattern-in-PHP-5/">second part</a> of their look at the Stage design pattern today, DevShed moves up from the <a href="http://www.phpdeveloper.org/news/7650">previous article</a> to implement a more "real world" example of the Stage pattern in action.
</p>
<blockquote>
Essentially, what I plan to demonstrate here is how this pattern can be used to build different versions of a given web document on the fly, either for display on a typical computer monitor, or for printing. 
</blockquote>
<p>
This involves the creation of <a href="http://www.devshed.com/c/a/PHP/Working-with-CSS-Styles-and-the-Stage-Pattern-in-PHP-5/1/">a class</a> to define the styles for both sides - print and screen - and <a href="http://www.devshed.com/c/a/PHP/Working-with-CSS-Styles-and-the-Stage-Pattern-in-PHP-5/2/">a class that will figure out</a> which of these needs to be applied.
</p>]]></description>
      <pubDate>Wed, 25 Apr 2007 13:03:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Felix Geisend&ouml;rfer's Blog: Make printing easy, using a PrintController]]></title>
      <guid>http://www.phpdeveloper.org/news/6346</guid>
      <link>http://www.phpdeveloper.org/news/6346</link>
      <description><![CDATA[<p>
On the ThinkingPHP blog today, <i>Felix Geisend&ouml;rfer</i> shows, based on some of his own personal work, <a href="http://www.thinkingphp.org/2006/09/24/make-printing-easy-using-a-printcontroller/">how to make printing simpler</a> inside of a CakePHP application.
</p>
<blockquote>
<p>
The web site I currently work on is going to be for the hotel where my step father is the manager of. One of the things that is going to be an important 'feature' for the site, is to make it printer friendly.
</p>
<p>
Since the new site has a very clean markup, I thought about simply creating an additonal style sheet for the media type "print". However, after thinking about it a little bit more today, I came to to the conclusion that I'm dealing with WYSIWYG visitors. So I decided to get a little fancier, and to create a PrintController, which would output printable versions of any site requested by /print/*
</p>
</blockquote>
<p>
He <a href="http://www.thinkingphp.org/2006/09/24/make-printing-easy-using-a-printcontroller/">gives the code</a> for the controller and for the easy to use link to go over to the "printable version" of each page, hiding the none-printable information from the browser.
</p>]]></description>
      <pubDate>Mon, 25 Sep 2006 07:41:14 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Community News: HTML2PHP - Transformation Tool]]></title>
      <guid>http://www.phpdeveloper.org/news/4720</guid>
      <link>http://www.phpdeveloper.org/news/4720</link>
      <description><![CDATA[Via a post over on digg.com today, there's an interesting little tool called <a href="http://www.quasarcr.com/html2php/">HTML2PHP</a> that could be useful in some certain situations.
<p>
<a href="http://www.quasarcr.com/html2php/">The tool</a> takes in whatever text input you have and performs operations on it. For example, paste in some HTML and hit the button to submit it and out the other side pops HTML formatted to echo in PHP (using print). There are other options on the tool - the ability to use printf and echo along with print, to add in newlines, and to add parenthesis (depending on your preference).
<p>
It's nothing overly impressive, but if you have a large block of HTML that you need to work with, you might <a href="http://www.quasarcr.com/html2php/">check into it</a>...]]></description>
      <pubDate>Tue, 24 Jan 2006 07:11:39 -0600</pubDate>
    </item>
  </channel>
</rss>
