<?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>Sun, 07 Sep 2008 09:32:29 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[PHPBuilder.com: Developing a Ajax-driven Shopping Cart with PHP and Prototype, Part 2]]></title>
      <guid>http://www.phpdeveloper.org/news/10105</guid>
      <link>http://www.phpdeveloper.org/news/10105</link>
      <description><![CDATA[<p>
PHPBuilder.com has continued their series looking at building an Ajax-driven shopping cart with <a href="http://www.phpbuilder.com/columns/jason_gilmore20080502_2.php3">part two</a> posted today (<a href="http://www.phpdeveloper.org/news/10060">part one here</a>). Last time they laid the PHP foundation for the example app, this time they add another layer - the Ajax functionality to manage the current contents of the cart.
</p>
<blockquote>
Finally, a link to the shopping cart is provided, although you could just as easily have displayed the cart contents on the same page. For the sake of brevity I'll just show you how to integrate the add feature, and will leave the subtraction mechanism to you as an exercise.
</blockquote>
<p>
The Ajax frontend calls a managecart.php backend file that calls addToCart and deleteFromCart based on which type of "task" is passed to it.
</p>]]></description>
      <pubDate>Mon, 05 May 2008 07:58:21 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Lukas Smith's Blog: Oracle goes shopping. Do we have an answer?]]></title>
      <guid>http://www.phpdeveloper.org/news/4854</guid>
      <link>http://www.phpdeveloper.org/news/4854</link>
      <description><![CDATA[<i>Lukas Smith</i> has a <a href="http://pooteeweet.org/blog/329">new post</a> over on his blog with his take on the moves that Oracle has been taking with several Open Source companies out there (such as Sleepycat).
<p>
<quote>
<i>
The topic at hand is Oracle buying <a href="http://biz.yahoo.com/prnews/060214/sftu130a.html">one</a> dual license open source company after <a href="http://www.infoworld.com/article/05/10/07/HNoraclebuys_1.html?source=rss&url=http://www.infoworld.com/article/05/10/07/HNoraclebuys_1.html">another</a>. This is getting a lot of people worried. Of course it also got me thinking.
<p>
Dual licensing is a business model associated with companies distributing their code under two very different licenses. However the same code is also provided through some open source license, usually one of the so called reciprocal licenses (GPL and friends).
<p>
That system is pretty nice on many levels. Everybody gets the code with the license they prefer. The dual licensing company benefits through a cheap open source style distribution model. However they can still make money with selling licenses which is a very lucrative business model, while they can also make money through support.
</i>
</quote>
<p>
He <a href="http://pooteeweet.org/blog/329">continues</a>, mentioning some of the serious flaws with this dual license model, including the inability for a company, at any time, to move to a more closed-source method of development. He even mentions a situation where a project could loose all developers.
<p>
And, in <a href="http://pooteeweet.org/blog/329">his words</a>:
<quote>
<i>
So are we up for the challenge if we are faced with such an exodus?
</i>
</quote>]]></description>
      <pubDate>Thu, 16 Feb 2006 06:51:02 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[CyberDummy's Blog: Drag Drop Shopping Cart - PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/4574</guid>
      <link>http://www.phpdeveloper.org/news/4574</link>
      <description><![CDATA[On <i>CyberDummy</i>'s blog today, there's a <a href="http://www.cyberdummy.co.uk/2005/12/28/drag-drop-shopping-cart-php/">quick post</a> that points to a handy script over on the <a href="http://script.aculo.us">script.aculo.us library</a> - a drag-and-drop shopping cart.
<p>
<quote>
<i>
Just discovered the the excellent script.aculo.us <a href="http://demo.script.aculo.us/shop">drag and drop shopping cart</a>. It is implemented with the script.aculo.us javascript library and ruby on rails.
It is a perfect fit for a project I am working on but I needed a PHP version here is the <a href="http://cyberdummy.co.uk/test/cart.php">rough first draft</a> with <a href="http://cyberdummy.co.uk/test/cart.phps">source code</a>.
</i>
</quote>
<p>
I can definitely see <a href="http://cyberdummy.co.uk/test/cart.php">something like this</a> being the next step in ecommerce sites. No more hitting "Add to Cart" and waiting for the page to refresh, view the cart, then hit "Continue Shopping". Simply drag it in and it pops right up...]]></description>
      <pubDate>Thu, 29 Dec 2005 06:30:44 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Patricks' Blog: Writing a Simple AJAX/PHP Shopping Cart]]></title>
      <guid>http://www.phpdeveloper.org/news/4413</guid>
      <link>http://www.phpdeveloper.org/news/4413</link>
      <description><![CDATA[On our sister site, <a href="http://www.ajaxdeveloper.org">AjaxDeveloper.org</a> today, there's <a href="http://www.ajaxdeveloper.org/news/572">a new pointer</a> to a blog post from <i>Patrick</i> on the creation of a <a href="http://www.thaxtertewksbury.com/2005/11/29/ajax-shopping-cart/">Simple AJAX/PHP Shopping Cart</a>.
<p>
<quote>
<i>
I recently read an article from <a href="http://www.johnwiseman.ca/">John Wiseman</a> on creating a MySQL connection with AJAX (<a href="http://www.johnwiseman.ca/blogging/?p=61">article link</a>). Being a newcomer to the AJAX world I've found many tutorials and code libraries to be rather bloated and presumptious. John's article however was right on target and really got me going in the write direction to start thinking about AJAX and how it should work. 
<p>
Given that article I started tinkering around and wound up creating a simple shopping cart application for a client. Below is a scaled down version of said application that hopefully can help you along in your AJAX travels.
</i>
</quote>
<p>
There's <a href="http://www.thaxtertewksbury.com/2005/11/29/ajax-shopping-cart/">plenty of code here</a> to get you started, including the database structure, all availible for download. He doesn't explain much of it, but he does show where the Ajax is used - adding/removing/etc products from the shopping cart...]]></description>
      <pubDate>Thu, 01 Dec 2005 07:58:17 -0600</pubDate>
    </item>
  </channel>
</rss>
