CakePHP - Shopping Cart

Costas

Administrator
Staff member
A simple PHP Shopping Cart built with CakePHP PHP framework.

v2.5
http://github.com/andraskende/cakephp-shopping-cart
author : http://www.kende.com/

v3.0
http://github.com/quickapps/cms

CakePHP 3, here we go again
http://mamchenkov.net/wordpress/2014/07/01/cakephp-3-here-we-go-again/

start v3.0
http://book.cakephp.org/3.0/en/orm.html
http://waltherlalk.com/blog/cakephp-3-tutorial-part-1

start v2.0
http://www.the-nerd.be/category/tutorials/cakephp-tutorials/

CRUD
http://friendsofcake.com/
or
http://github.com/FriendsOfCake/crud

Bootstrap UI
https://github.com/FriendsOfCake/bootstrap-ui

JavaScript:
echo $this->Form->create($article);
echo $this->Form->input('title');
echo $this->Form->input('published');

will render this HTML:
JavaScript:
<form method="post" accept-charset="utf-8" role="form" action="/articles/add">
    <div style="display:none;"><input type="hidden" name="_method" value="POST"></div>
    <div class="form-group">
        <label class="control-label" for="title">Title</label>
        <input type="text" name="title" required="required" id="title" class="form-control">
    </div>
    <div class="form-group">
        <input type="hidden" name="published" value="0">
        <label for="published">
            <input type="checkbox" name="published" value="1" id="published" class="form-control">
            Published
        </label>
    </div>

paypal guide - http://www.evoluted.net/thinktank/web-development/paypal-php-integration

Build a shopping cart with CakePHP and jQuery (part 1) - http://www.startutorial.com/articles/view/build-a-shopping-cart-with-cakephp-and-jquery-part-1
 
Top