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
1
2
3
echo $this->Form->create($article);
echo $this->Form->input('title');
echo $this->Form->input('published');
will render this HTML:
1
2
3
4
5
6
7
8
9
10
11
12
13
<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
origin - http://www.pipiscrew.com/?p=3178 php-cakephp-shopping-cart