<?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, 18 May 2013 22:51:54 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Daniel Krook's Blog: Migrating PHP applications to DB2]]></title>
      <guid>http://www.phpdeveloper.org/news/17650</guid>
      <link>http://www.phpdeveloper.org/news/17650</link>
      <description><![CDATA[<p>
As <i>Daniel Krook</i> mentions in <a href="http://krook.net/archives/827">his latest blog post</a>, the IBM developerWorks site has just posted the last part of a series he's been writing about migrating a PHP application's backend over to DB2.
</p>
<blockquote>
IBM developerWorks has just published the final part in our series on migrating a PHP application from MySQL to DB2. [...] In addition to sharing our own experience, the series highlights the number of resources available to you to carry out your own migration.
</blockquote>
<p>The series is broken up into four parts:</p>
<ul>
<li><a href="http://www.ibm.com/developerworks/data/library/techarticle/dm-1011phpdb2mysql/">Prepare for your migration</a>
<li><a href="http://www.ibm.com/developerworks/data/library/techarticle/dm-1103phpdb2mysql2/">Migrate your data</a>
<li><a href="http://www.ibm.com/developerworks/data/library/techarticle/dm-1108phpdb2mysql3/">Convert your PHP code</a>
<li><a href="http://www.ibm.com/developerworks/data/library/techarticle/dm-1203phpdb2mysql4/">Deploy your application</a>
</ul>]]></description>
      <pubDate>Fri, 09 Mar 2012 08:20:28 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[IBM developerWorks: Build Web services with PHP in Eclipse]]></title>
      <guid>http://www.phpdeveloper.org/news/10185</guid>
      <link>http://www.phpdeveloper.org/news/10185</link>
      <description><![CDATA[<p>
The IBM developerWorks website has <a href="http://www.ibm.com/developerworks/edu/os-dw-os-eclipse-phpws.html?S_TACT=105AGX59&S_CMP=GRsite-btw15&ca=dgr-btw15PDTEclipse">a new tutorial posted</a> showing how to create a web service with the combination of PHP and the Eclipse IDE.
</p>
<blockquote>
Learn how to build Web services in PHP using the PHP Development Tools plug-in in Eclipse Europa. Become familiar with the PDT project, and learn how to create and deploy useful PHP projects, learn about the philosophy behind contract-first development, and understand the basic parts that make up a Web Services Description Language (WSDL) file.
</blockquote>
<p>
You'll have to <a href="https://www14.software.ibm.com/webapp/iwm/web/preLogin.do?lang=en_US&source=dw-os-eclipse-phpws&S_TACT=105AGX59&S_CMP=GRsite-btw15">register/sign in</a> to get to it. They give an introduction to the <a href="http://download.eclipse.org/tools/pdt/downloads/">PHP Development Tools</a> for Eclipse, creating a WSDL file visually in the IDE and integrating it all to work with your Eclipse front-end.
</p>]]></description>
      <pubDate>Wed, 14 May 2008 13:46:50 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[IBM developerWorks: Service Component Architecture now on PECL]]></title>
      <guid>http://www.phpdeveloper.org/news/6766</guid>
      <link>http://www.phpdeveloper.org/news/6766</link>
      <description><![CDATA[<p>
On the IBM developerWorks site, there's <a href="http://www-03.ibm.com/developerworks/blogs/page/phpblog?entry=service_component_architecture_now_on&ca=drs-bl">a new post</a> talking about a new Service Component Architecture module that's been released over on the <a href="http://pecl.php.net">PECL site</a> - <a href="http://pecl.php.net/package/SCA_SDO">SCA_SDO</a>.
</p>
<blockquote>
We've just made our first release of <a href="http://osoa.org/display/PHP/SCA+with+PHP">SCA</a> on the <a href="http://pecl.php.net/">PECL repository</a>. The code has been added into what was the <a href="http://osoa.org/display/PHP/SDO+with+PHP">SDO</a> project and which has now been imaginatively renamed to <a href="http://pecl.php.net/package/SCA_SDO">SCA_SDO</a> (you won't believe how much thought went into that...). 
</blockquote>
<p>
Main features include:
<ul>
<li>inclusion of the Service Component Architecture (SCA) component
<li>new PEAR packaging to install SCA and SDO as peer directories (PEAR/SCA and PEAR/SDO)
<li>new function in SDO_DAS_Relational to support multiple root data objects
<li>new function in SDO_DAS_XML to support CDATA sections (not yet complete)
</ul>
To find out more about the project, check out <a href="http://osoa.org/display/PHP/SOA+PHP+Homepage">its homepage</a>.
</p>]]></description>
      <pubDate>Fri, 24 Nov 2006 12:31:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Sebastian Bergmann's Blog: Article on PHPUnit at IBM DeveloperWorks]]></title>
      <guid>http://www.phpdeveloper.org/news/6070</guid>
      <link>http://www.phpdeveloper.org/news/6070</link>
      <description><![CDATA[<p>
<i>Sebastian Bergmann</i> has <a href="http://www.sebastian-bergmann.de/blog/archives/616-Article-on-PHPUnit-at-IBM-DeveloperWorks.html">a quick note</a> today on his blog about an article from IBM that taks about using unit testing, specifically <a href="http://www.phpunit.de/">PHPUnit</a>.
</p>
<blockquote>
<p>
<a href="http://www.ibm.com/developerworks">IBM DeveloperWorks</a> has an <a href="http://www-128.ibm.com/developerworks/opensource/library/os-php-unit/">article</a> titled "Check your PHP code at every level with unit tests" that suggests unit tests for PHP code at the module, database, and user-interface levels and proposes <a href="http://www.phpunit.de/>PHPUnit</a> as the tool for this job.
</p>
<p>
It is nice to see that <a href="http://www.sebastian-bergmann.de/blog/archives/515-IBM-uses-PHPUnit.html">IBM not only uses my software</a>, but also advocates it.
</p>
</blockquote>
<p>
You can find out complete information on PHPUnit from <a href="http://www.phpunit.de/">the project homepage</a> and about unit testing from <a href="http://en.wikipedia.org/wiki/Unit_test">here</a>.
</p>]]></description>
      <pubDate>Thu, 17 Aug 2006 14:17:23 -0500</pubDate>
    </item>
  </channel>
</rss>
