<?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, 25 May 2013 08:45:48 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Brian Swan's Blog: What SQL Server 2012 Means for PHP Developers]]></title>
      <guid>http://www.phpdeveloper.org/news/17666</guid>
      <link>http://www.phpdeveloper.org/news/17666</link>
      <description><![CDATA[<p>
<i>Brian Swan</i> (of Microsoft) has a new post to his blog talking about <a href="http://blogs.msdn.com/b/brian_swan/archive/2012/03/12/what-sql-server-2012-means-for-php-developers.aspx">what SQL Server 2012 means for PHP developers</a> - what the latest version of this MS database has to offer and how to get a basic install up and working in your environment.
</p>
<blockquote>
Last week, Microsoft held a <a href="http://www.sqlserverlaunch.com/ww/Home">virtual conference</a> to announce the availability of SQL Server 2012. The conference included a number of events (speakers, videos, training activities, etc.) that focused on the <a href="http://msdn.microsoft.com/en-us/library/bb500435(SQL.110).aspx">new functionality available in this release</a>. Now that most of the fanfare has died down a bit, I'd like to take a look at what some of that new functionality means for PHP developers. Combined with the <a href="http://blogs.msdn.com/b/sqlphp/archive/2012/03/07/microsoft-drivers-3-0-for-php-for-sql-server-released-to-web.aspx">release of the Microsoft Driver for SQL Server for PHP</a>, I think the SQL Server 2012 release makes some big improvements in developing PHP/SQL Server applications.
</blockquote>
<p>
He includes instructions on getting the latest version set up with the <a href="http://blogs.msdn.com/b/sqlexpress/archive/2011/07/12/introducing-localdb-a-better-sql-express.aspx">SQL Server Express LocalDB</a> (and <a href="http://www.microsoft.com/download/en/details.aspx?id=29065">command line tools</a>). He mentions only a few of the new things this latest version has to offer - easier pagination with OFFSET/FETCH NEXT, client-side cursors and other things like "AlwaysOn Connectivity" and the PDO::ATTR_EMULATE_PREPARES constant.
</p>]]></description>
      <pubDate>Tue, 13 Mar 2012 11:46:47 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Brian Swan's Blog: Getting Started with the SQL Server Driver for PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/13999</guid>
      <link>http://www.phpdeveloper.org/news/13999</link>
      <description><![CDATA[<p>
<i>Brian Swan</i> has posted a new guide for those wanting to <a href="http://blogs.msdn.com/brian_swan/archive/2010/02/08/getting-started-with-the-sql-server-driver-for-php.aspx">get started using the SQL Server driver for PHP</a> in their application development. His target of choice for the example is a <a href="http://www.microsoft.com/express/Database/">SQL Server Express</a> database.
</p>
<blockquote>
I'll build a web page that exposes enough of the driver functionality for you to understand the basics of connecting to a server, inserting and retrieving data, and handling errors. A quick note about simplicity: The web page I'll build in this post is very simple '" it's just a simple form, really. It collects information about people who are registering for some fictional event. I'm intentionally keeping it very simple so I can focus on the PHP code for using the driver.
</blockquote>
<p>
He walks you through the full process - everything from the installation of the driver to creating the database and, finally, building the page that connects to the SQL Server database and inserts/selects data from the sample table. 
</p>]]></description>
      <pubDate>Wed, 10 Feb 2010 10:32:17 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[SitePoint.com: Get Started with PHP on Windows with SQL Server Express]]></title>
      <guid>http://www.phpdeveloper.org/news/13994</guid>
      <link>http://www.phpdeveloper.org/news/13994</link>
      <description><![CDATA[<p>
On the Server-Side Essentials blog for SitePoint.com today <i>Akash Mehta</i> has a new tutorial walking you through the <a href="http://articles.sitepoint.com/article/sql-server-php">beginning steps of using SQL Server Express and PHP</a> with the help of the Windows Platform Installer.
</p>
<blockquote>
This article assumes you have a basic understanding of PHP and relational databases - if you can write PHP and SQL code to manipulate database records, you're good to go. We'll move through the PHP fairly quickly, in order to focus on the power and simplicity of the platform.
</blockquote>
<p>
You'll need to <a href="http://www.microsoft.com/web/Downloads/platform.aspx">download the Web Platform Installer</a> to follow along with the tutorial (or, obviously, have all of the needed software installed already). He walks you through the installation complete with screenshots including how to create the handler to let your PHP connect to the SQL Server backend and making some sample tables for PHP to select data from.
</p>]]></description>
      <pubDate>Tue, 09 Feb 2010 13:16:13 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Padraic Brady's Blog: Compiling PHP for Windows Vista using Visual C++ Express 2008 - Seriously!]]></title>
      <guid>http://www.phpdeveloper.org/news/9265</guid>
      <link>http://www.phpdeveloper.org/news/9265</link>
      <description><![CDATA[<p>
<i>Padraic Brady</i> has <a href="http://blog.astrumfutura.com/archives/327-Compiling-PHP-for-Windows-Vista-using-Visual-C++-Express-2008-Seriously!.html">posted a guide</a> he's written up to show other developers out there how to compile PHP for Windows (Vista) using the Visual C++ Express 2008 software.
</p>
<blockquote>
Over the past week or so I've been figuring out how to compile PHP on Windows, specifically Windows Vista. It's been an interesting ride since I'm not very familiar with compiling on Windows to start with. [...] If you are using Windows Vista, or intend updating/using Visual C++ Express 2008, then my blog entry is largely another coat of sugar on top of <a href="http://elizabethmariesmith.com/2006/11/15/how-to-compile-php52-and-php-gtk2-on-windows-using-visual-c-express/">Elizabeth's guide</a> to clear up any difference between the two approaches.
</blockquote>
<p>
He lists the software you'll need to make the compile work (including Virtual Clone Drive, WinRAR, VS 2008 Express and the .NET Framework SDK)  and then breaks it down into three steps - the installation of the development environment (and setup), downloading PHP/libraries to the environment and, of course, compiling the PHP instance to your specs (complete with command line calls to make it all happen).
</p>]]></description>
      <pubDate>Tue, 18 Dec 2007 10:25:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Elizabeth Smith's Blog: How to Compile PHP5.2 and PHP-GTK2 on Windows using Visual C++ Express]]></title>
      <guid>http://www.phpdeveloper.org/news/6716</guid>
      <link>http://www.phpdeveloper.org/news/6716</link>
      <description><![CDATA[<p>
Following up on her previous <a href="http://www.phpdeveloper.org/news/6679">two</a> <a href="http://www.phpdeveloper.org/news/6687">posts</a>, <i>Elizabeth Smith</i> has finally gotten the process down to an art for compiling PHP-GTK2 into a Windows version of PHP 5.2 pretty painlessly.
</p>
<blockquote>
No, I'm not insane. And I realize that there are some great resources for <a href="http://php.net/downloads.php">downloading</a> <a href="http://www.apachelounge.com/download/">precompiled</a> ready to go PHP windows <a href="http://snaps.php.net/">binaries</a> and <a href="http://pecl4win.php.net/list.php">extensions</a>. However, I've been working with PHP-GTK2, and <a href="http://php-gtk2.de/manual/classcoverage.htm">writing C code</a>. I wanted to be able to test new things being placed in CVS and learn enough C to help increase the implementation percentage.
</blockquote>
<p>
She <a href="http://elizabethmariesmith.com/2006/11/15/how-to-compile-php52-and-php-gtk2-on-windows-using-visual-c-express/">breaks the process up</a> into the four logical steps for getting it up and running:
<ul>
<li>Setup a (free as in money, not beer) <a href="http://elizabethmariesmith.com/2006/11/15/how-to-compile-php52-and-php-gtk2-on-windows-using-visual-c-express/2/">compile environment</a>
<li><a href="http://elizabethmariesmith.com/2006/11/15/how-to-compile-php52-and-php-gtk2-on-windows-using-visual-c-express/3/">Compile PHP</a>
<li><a href="http://elizabethmariesmith.com/2006/11/15/how-to-compile-php52-and-php-gtk2-on-windows-using-visual-c-express/4/">Compile PHP-GTK2</a>
<li><a href="http://elizabethmariesmith.com/2006/11/15/how-to-compile-php52-and-php-gtk2-on-windows-using-visual-c-express/5/">Deploy PHP-GTK2</a>
</ul>
She also tosses in a few screenshots of the process so you don't get too lost. There's a lot of information in here, so you'll need to pay attention, especially when it comes to the other packages and items you'll need installed to get it working.
</p>]]></description>
      <pubDate>Thu, 16 Nov 2006 06:56:47 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Christopher Jones' Blog: Review: PHP Web Programming]]></title>
      <guid>http://www.phpdeveloper.org/news/6547</guid>
      <link>http://www.phpdeveloper.org/news/6547</link>
      <description><![CDATA[<p>
On his Oracle blog, <i>Christopher Jones</i> has posted <a href="http://blogs.oracle.com/opal/2006/10/22#a69">a brief review</a> of a book from Oracle spotlighting "PHP Web Programming", from author <i>Michael McLaughlin</i>.
</p>
<blockquote>
Michael McLaughlin calls his new book PHP Web Programming an enabling book.  I'd go further and call it a desert island book.  It is the only thing you'd need to carry.  It has much reference material strategically placed in the text, well thought out examples, and teaches how to build applications.
</blockquote>
<p>
<i>Christopher</i> mentions some of the contents of the book - HTTP authentication, the POSIX file function,strings/objects, error handling, etc - it has it all. It especially has detailed information about using PHP with Oracle - PL/SQL, LOBs, REF CURSORS, and much more. It comes with a CD of code and applications, everything you'd need to get a PHP/Oracle installation up and running including the Oracle Database 10g Express Edition, Zend Core for Oracle's PHP stack, and the Apache web server.
</p>]]></description>
      <pubDate>Mon, 23 Oct 2006 08:21:00 -0500</pubDate>
    </item>
  </channel>
</rss>
