├── 3912.pdf ├── 3913.pdf ├── 9781590598641.jpg ├── Code Download ├── Chapter 03 │ ├── Code │ │ ├── business │ │ │ └── error_handler.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── application.php │ │ │ └── templates │ │ │ │ └── store_front.tpl │ │ ├── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ │ └── test.php │ └── Database │ │ ├── chapter03.sql │ │ ├── create_database.sql │ │ └── create_user.sql ├── Chapter 04 │ ├── Code │ │ ├── business │ │ │ ├── catalog.php │ │ │ ├── database_handler.php │ │ │ └── error_handler.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── application.php │ │ │ ├── departments_list.php │ │ │ ├── link.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── departments_list.tpl │ │ │ │ └── store_front.tpl │ │ └── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ └── Database │ │ ├── chapter04.sql │ │ ├── create_department_table.sql │ │ └── populate_department.sql ├── Chapter 05 │ ├── Code │ │ ├── business │ │ │ ├── catalog.php │ │ │ ├── database_handler.php │ │ │ └── error_handler.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── application.php │ │ │ ├── categories_list.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── blank.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ └── store_front.tpl │ │ └── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ └── Database │ │ ├── chapter05.sql │ │ ├── populate_category.sql │ │ ├── populate_product.sql │ │ └── populate_product_category.sql ├── Chapter 06 │ ├── Code │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── business │ │ │ ├── catalog.php │ │ │ ├── database_handler.php │ │ │ └── error_handler.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── application.php │ │ │ ├── categories_list.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── blank.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ └── store_front.tpl │ │ └── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ └── Database │ │ └── chapter06.sql ├── Chapter 07 │ ├── Code │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── business │ │ │ ├── catalog.php │ │ │ ├── database_handler.php │ │ │ └── error_handler.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── application.php │ │ │ ├── categories_list.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── blank.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ └── store_front.tpl │ │ └── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ └── Database │ │ └── chapter07.sql ├── Chapter 08 │ ├── Code │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── business │ │ │ ├── catalog.php │ │ │ ├── database_handler.php │ │ │ └── error_handler.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── application.php │ │ │ ├── categories_list.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── search_box.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── blank.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ ├── search_box.tpl │ │ │ │ ├── search_results.tpl │ │ │ │ └── store_front.tpl │ │ └── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ └── Database │ │ └── chapter08.sql ├── Chapter 09 │ └── Code │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── business │ │ ├── catalog.php │ │ ├── database_handler.php │ │ └── error_handler.php │ │ ├── include │ │ ├── config.php │ │ └── configs │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ ├── application.php │ │ ├── categories_list.php │ │ ├── department.php │ │ ├── departments_list.php │ │ ├── link.php │ │ ├── product.php │ │ ├── products_list.php │ │ ├── search_box.php │ │ ├── smarty_plugins │ │ │ └── function.load_presentation_object.php │ │ ├── store_front.php │ │ └── templates │ │ │ ├── blank.tpl │ │ │ ├── categories_list.tpl │ │ │ ├── department.tpl │ │ │ ├── departments_list.tpl │ │ │ ├── first_page_contents.tpl │ │ │ ├── product.tpl │ │ │ ├── products_list.tpl │ │ │ ├── search_box.tpl │ │ │ ├── search_results.tpl │ │ │ └── store_front.tpl │ │ └── styles │ │ ├── base-min.css │ │ ├── fonts-min.css │ │ ├── grids-min.css │ │ ├── reset-min.css │ │ └── tshirtshop.css ├── Chapter 10 │ ├── Code │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── admin.php │ │ ├── business │ │ │ ├── catalog.php │ │ │ ├── database_handler.php │ │ │ └── error_handler.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── admin_categories.php │ │ │ ├── admin_departments.php │ │ │ ├── admin_login.php │ │ │ ├── admin_menu.php │ │ │ ├── application.php │ │ │ ├── categories_list.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── first_page_contents.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── search_box.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_admin.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── admin_categories.tpl │ │ │ │ ├── admin_departments.tpl │ │ │ │ ├── admin_login.tpl │ │ │ │ ├── admin_menu.tpl │ │ │ │ ├── blank.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ ├── search_box.tpl │ │ │ │ ├── search_results.tpl │ │ │ │ ├── store_admin.tpl │ │ │ │ └── store_front.tpl │ │ └── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ └── Database │ │ └── chapter10.sql ├── Chapter 11 │ ├── Code │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── admin.php │ │ ├── business │ │ │ ├── catalog.php │ │ │ ├── database_handler.php │ │ │ └── error_handler.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── admin_attribute_values.php │ │ │ ├── admin_attributes.php │ │ │ ├── admin_categories.php │ │ │ ├── admin_departments.php │ │ │ ├── admin_login.php │ │ │ ├── admin_menu.php │ │ │ ├── admin_product_details.php │ │ │ ├── admin_products.php │ │ │ ├── application.php │ │ │ ├── categories_list.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── first_page_contents.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── search_box.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_admin.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── admin_attribute_values.tpl │ │ │ │ ├── admin_attributes.tpl │ │ │ │ ├── admin_categories.tpl │ │ │ │ ├── admin_departments.tpl │ │ │ │ ├── admin_login.tpl │ │ │ │ ├── admin_menu.tpl │ │ │ │ ├── admin_product_details.tpl │ │ │ │ ├── admin_products.tpl │ │ │ │ ├── blank.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ ├── search_box.tpl │ │ │ │ ├── search_results.tpl │ │ │ │ ├── store_admin.tpl │ │ │ │ └── store_front.tpl │ │ └── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ └── Database │ │ └── chapter11.sql ├── Chapter 12 │ ├── Code │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── admin.php │ │ ├── business │ │ │ ├── catalog.php │ │ │ ├── database_handler.php │ │ │ ├── error_handler.php │ │ │ └── shopping_cart.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── admin_attribute_values.php │ │ │ ├── admin_attributes.php │ │ │ ├── admin_carts.php │ │ │ ├── admin_categories.php │ │ │ ├── admin_departments.php │ │ │ ├── admin_login.php │ │ │ ├── admin_menu.php │ │ │ ├── admin_product_details.php │ │ │ ├── admin_products.php │ │ │ ├── application.php │ │ │ ├── cart_details.php │ │ │ ├── cart_summary.php │ │ │ ├── categories_list.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── first_page_contents.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── search_box.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_admin.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── admin_attribute_values.tpl │ │ │ │ ├── admin_attributes.tpl │ │ │ │ ├── admin_carts.tpl │ │ │ │ ├── admin_categories.tpl │ │ │ │ ├── admin_departments.tpl │ │ │ │ ├── admin_login.tpl │ │ │ │ ├── admin_menu.tpl │ │ │ │ ├── admin_product_details.tpl │ │ │ │ ├── admin_products.tpl │ │ │ │ ├── blank.tpl │ │ │ │ ├── cart_details.tpl │ │ │ │ ├── cart_summary.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ ├── search_box.tpl │ │ │ │ ├── search_results.tpl │ │ │ │ ├── store_admin.tpl │ │ │ │ └── store_front.tpl │ │ └── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ └── Database │ │ └── chapter12.sql ├── Chapter 13 │ └── Code │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── admin.php │ │ ├── business │ │ ├── catalog.php │ │ ├── database_handler.php │ │ ├── error_handler.php │ │ └── shopping_cart.php │ │ ├── include │ │ ├── config.php │ │ └── configs │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ ├── admin_attribute_values.php │ │ ├── admin_attributes.php │ │ ├── admin_carts.php │ │ ├── admin_categories.php │ │ ├── admin_departments.php │ │ ├── admin_login.php │ │ ├── admin_menu.php │ │ ├── admin_product_details.php │ │ ├── admin_products.php │ │ ├── application.php │ │ ├── cart_details.php │ │ ├── cart_summary.php │ │ ├── categories_list.php │ │ ├── department.php │ │ ├── departments_list.php │ │ ├── first_page_contents.php │ │ ├── link.php │ │ ├── product.php │ │ ├── products_list.php │ │ ├── search_box.php │ │ ├── smarty_plugins │ │ │ └── function.load_presentation_object.php │ │ ├── store_admin.php │ │ ├── store_front.php │ │ └── templates │ │ │ ├── admin_attribute_values.tpl │ │ │ ├── admin_attributes.tpl │ │ │ ├── admin_carts.tpl │ │ │ ├── admin_categories.tpl │ │ │ ├── admin_departments.tpl │ │ │ ├── admin_login.tpl │ │ │ ├── admin_menu.tpl │ │ │ ├── admin_product_details.tpl │ │ │ ├── admin_products.tpl │ │ │ ├── blank.tpl │ │ │ ├── cart_details.tpl │ │ │ ├── cart_summary.tpl │ │ │ ├── categories_list.tpl │ │ │ ├── department.tpl │ │ │ ├── departments_list.tpl │ │ │ ├── first_page_contents.tpl │ │ │ ├── product.tpl │ │ │ ├── products_list.tpl │ │ │ ├── search_box.tpl │ │ │ ├── search_results.tpl │ │ │ ├── store_admin.tpl │ │ │ └── store_front.tpl │ │ ├── scripts │ │ └── ajax.js │ │ └── styles │ │ ├── base-min.css │ │ ├── fonts-min.css │ │ ├── grids-min.css │ │ ├── reset-min.css │ │ └── tshirtshop.css ├── Chapter 14 │ ├── Code │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── admin.php │ │ ├── business │ │ │ ├── catalog.php │ │ │ ├── database_handler.php │ │ │ ├── error_handler.php │ │ │ ├── orders.php │ │ │ └── shopping_cart.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── admin_attribute_values.php │ │ │ ├── admin_attributes.php │ │ │ ├── admin_carts.php │ │ │ ├── admin_categories.php │ │ │ ├── admin_departments.php │ │ │ ├── admin_login.php │ │ │ ├── admin_menu.php │ │ │ ├── admin_order_details.php │ │ │ ├── admin_orders.php │ │ │ ├── admin_product_details.php │ │ │ ├── admin_products.php │ │ │ ├── application.php │ │ │ ├── cart_details.php │ │ │ ├── cart_summary.php │ │ │ ├── categories_list.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── first_page_contents.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── search_box.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_admin.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── admin_attribute_values.tpl │ │ │ │ ├── admin_attributes.tpl │ │ │ │ ├── admin_carts.tpl │ │ │ │ ├── admin_categories.tpl │ │ │ │ ├── admin_departments.tpl │ │ │ │ ├── admin_login.tpl │ │ │ │ ├── admin_menu.tpl │ │ │ │ ├── admin_order_details.tpl │ │ │ │ ├── admin_orders.tpl │ │ │ │ ├── admin_product_details.tpl │ │ │ │ ├── admin_products.tpl │ │ │ │ ├── blank.tpl │ │ │ │ ├── cart_details.tpl │ │ │ │ ├── cart_summary.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ ├── search_box.tpl │ │ │ │ ├── search_results.tpl │ │ │ │ ├── store_admin.tpl │ │ │ │ └── store_front.tpl │ │ ├── scripts │ │ │ └── ajax.js │ │ └── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ └── Database │ │ └── chapter14.sql ├── Chapter 15 │ ├── Code │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── admin.php │ │ ├── business │ │ │ ├── catalog.php │ │ │ ├── database_handler.php │ │ │ ├── error_handler.php │ │ │ ├── orders.php │ │ │ └── shopping_cart.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── admin_attribute_values.php │ │ │ ├── admin_attributes.php │ │ │ ├── admin_carts.php │ │ │ ├── admin_categories.php │ │ │ ├── admin_departments.php │ │ │ ├── admin_login.php │ │ │ ├── admin_menu.php │ │ │ ├── admin_order_details.php │ │ │ ├── admin_orders.php │ │ │ ├── admin_product_details.php │ │ │ ├── admin_products.php │ │ │ ├── application.php │ │ │ ├── cart_details.php │ │ │ ├── cart_summary.php │ │ │ ├── categories_list.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── first_page_contents.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── search_box.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_admin.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── admin_attribute_values.tpl │ │ │ │ ├── admin_attributes.tpl │ │ │ │ ├── admin_carts.tpl │ │ │ │ ├── admin_categories.tpl │ │ │ │ ├── admin_departments.tpl │ │ │ │ ├── admin_login.tpl │ │ │ │ ├── admin_menu.tpl │ │ │ │ ├── admin_order_details.tpl │ │ │ │ ├── admin_orders.tpl │ │ │ │ ├── admin_product_details.tpl │ │ │ │ ├── admin_products.tpl │ │ │ │ ├── blank.tpl │ │ │ │ ├── cart_details.tpl │ │ │ │ ├── cart_summary.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ ├── search_box.tpl │ │ │ │ ├── search_results.tpl │ │ │ │ ├── store_admin.tpl │ │ │ │ └── store_front.tpl │ │ ├── scripts │ │ │ └── ajax.js │ │ └── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ └── Database │ │ └── chapter15.sql ├── Chapter 16 │ ├── Code │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── admin.php │ │ ├── business │ │ │ ├── catalog.php │ │ │ ├── customer.php │ │ │ ├── database_handler.php │ │ │ ├── error_handler.php │ │ │ ├── orders.php │ │ │ ├── password_hasher.php │ │ │ ├── secure_card.php │ │ │ ├── shopping_cart.php │ │ │ └── symmetric_crypt.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── admin_attribute_values.php │ │ │ ├── admin_attributes.php │ │ │ ├── admin_carts.php │ │ │ ├── admin_categories.php │ │ │ ├── admin_departments.php │ │ │ ├── admin_login.php │ │ │ ├── admin_menu.php │ │ │ ├── admin_order_details.php │ │ │ ├── admin_orders.php │ │ │ ├── admin_product_details.php │ │ │ ├── admin_products.php │ │ │ ├── application.php │ │ │ ├── cart_details.php │ │ │ ├── cart_summary.php │ │ │ ├── categories_list.php │ │ │ ├── checkout_info.php │ │ │ ├── customer_address.php │ │ │ ├── customer_credit_card.php │ │ │ ├── customer_details.php │ │ │ ├── customer_logged.php │ │ │ ├── customer_login.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── first_page_contents.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── search_box.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_admin.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── admin_attribute_values.tpl │ │ │ │ ├── admin_attributes.tpl │ │ │ │ ├── admin_carts.tpl │ │ │ │ ├── admin_categories.tpl │ │ │ │ ├── admin_departments.tpl │ │ │ │ ├── admin_login.tpl │ │ │ │ ├── admin_menu.tpl │ │ │ │ ├── admin_order_details.tpl │ │ │ │ ├── admin_orders.tpl │ │ │ │ ├── admin_product_details.tpl │ │ │ │ ├── admin_products.tpl │ │ │ │ ├── blank.tpl │ │ │ │ ├── cart_details.tpl │ │ │ │ ├── cart_summary.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── checkout_info.tpl │ │ │ │ ├── checkout_not_logged.tpl │ │ │ │ ├── customer_address.tpl │ │ │ │ ├── customer_credit_card.tpl │ │ │ │ ├── customer_details.tpl │ │ │ │ ├── customer_logged.tpl │ │ │ │ ├── customer_login.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ ├── search_box.tpl │ │ │ │ ├── search_results.tpl │ │ │ │ ├── store_admin.tpl │ │ │ │ └── store_front.tpl │ │ ├── scripts │ │ │ └── ajax.js │ │ ├── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ │ ├── test_card.php │ │ ├── test_encryption.php │ │ └── test_hasher.php │ └── Database │ │ └── chapter16.sql ├── Chapter 17 │ ├── Code │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── admin.php │ │ ├── business │ │ │ ├── catalog.php │ │ │ ├── customer.php │ │ │ ├── database_handler.php │ │ │ ├── error_handler.php │ │ │ ├── orders.php │ │ │ ├── password_hasher.php │ │ │ ├── secure_card.php │ │ │ ├── shopping_cart.php │ │ │ └── symmetric_crypt.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── admin_attribute_values.php │ │ │ ├── admin_attributes.php │ │ │ ├── admin_carts.php │ │ │ ├── admin_categories.php │ │ │ ├── admin_departments.php │ │ │ ├── admin_login.php │ │ │ ├── admin_menu.php │ │ │ ├── admin_order_details.php │ │ │ ├── admin_orders.php │ │ │ ├── admin_product_details.php │ │ │ ├── admin_products.php │ │ │ ├── application.php │ │ │ ├── cart_details.php │ │ │ ├── cart_summary.php │ │ │ ├── categories_list.php │ │ │ ├── checkout_info.php │ │ │ ├── customer_address.php │ │ │ ├── customer_credit_card.php │ │ │ ├── customer_details.php │ │ │ ├── customer_logged.php │ │ │ ├── customer_login.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── first_page_contents.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── search_box.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_admin.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── admin_attribute_values.tpl │ │ │ │ ├── admin_attributes.tpl │ │ │ │ ├── admin_carts.tpl │ │ │ │ ├── admin_categories.tpl │ │ │ │ ├── admin_departments.tpl │ │ │ │ ├── admin_login.tpl │ │ │ │ ├── admin_menu.tpl │ │ │ │ ├── admin_order_details.tpl │ │ │ │ ├── admin_orders.tpl │ │ │ │ ├── admin_product_details.tpl │ │ │ │ ├── admin_products.tpl │ │ │ │ ├── blank.tpl │ │ │ │ ├── cart_details.tpl │ │ │ │ ├── cart_summary.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── checkout_info.tpl │ │ │ │ ├── checkout_not_logged.tpl │ │ │ │ ├── customer_address.tpl │ │ │ │ ├── customer_credit_card.tpl │ │ │ │ ├── customer_details.tpl │ │ │ │ ├── customer_logged.tpl │ │ │ │ ├── customer_login.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ ├── search_box.tpl │ │ │ │ ├── search_results.tpl │ │ │ │ ├── store_admin.tpl │ │ │ │ └── store_front.tpl │ │ ├── scripts │ │ │ └── ajax.js │ │ ├── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ │ ├── test_card.php │ │ ├── test_encryption.php │ │ └── test_hasher.php │ └── Database │ │ └── chapter17.sql ├── Chapter 18 │ ├── Code │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── admin.php │ │ ├── business │ │ │ ├── catalog.php │ │ │ ├── customer.php │ │ │ ├── database_handler.php │ │ │ ├── error_handler.php │ │ │ ├── i_pipeline_section.php │ │ │ ├── order_processor.php │ │ │ ├── orders.php │ │ │ ├── password_hasher.php │ │ │ ├── ps_dummy.php │ │ │ ├── secure_card.php │ │ │ ├── shopping_cart.php │ │ │ └── symmetric_crypt.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── admin_attribute_values.php │ │ │ ├── admin_attributes.php │ │ │ ├── admin_carts.php │ │ │ ├── admin_categories.php │ │ │ ├── admin_departments.php │ │ │ ├── admin_login.php │ │ │ ├── admin_menu.php │ │ │ ├── admin_order_details.php │ │ │ ├── admin_orders.php │ │ │ ├── admin_product_details.php │ │ │ ├── admin_products.php │ │ │ ├── application.php │ │ │ ├── cart_details.php │ │ │ ├── cart_summary.php │ │ │ ├── categories_list.php │ │ │ ├── checkout_info.php │ │ │ ├── customer_address.php │ │ │ ├── customer_credit_card.php │ │ │ ├── customer_details.php │ │ │ ├── customer_logged.php │ │ │ ├── customer_login.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── first_page_contents.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── search_box.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_admin.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── admin_attribute_values.tpl │ │ │ │ ├── admin_attributes.tpl │ │ │ │ ├── admin_carts.tpl │ │ │ │ ├── admin_categories.tpl │ │ │ │ ├── admin_departments.tpl │ │ │ │ ├── admin_login.tpl │ │ │ │ ├── admin_menu.tpl │ │ │ │ ├── admin_order_details.tpl │ │ │ │ ├── admin_orders.tpl │ │ │ │ ├── admin_product_details.tpl │ │ │ │ ├── admin_products.tpl │ │ │ │ ├── blank.tpl │ │ │ │ ├── cart_details.tpl │ │ │ │ ├── cart_summary.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── checkout_info.tpl │ │ │ │ ├── checkout_not_logged.tpl │ │ │ │ ├── customer_address.tpl │ │ │ │ ├── customer_credit_card.tpl │ │ │ │ ├── customer_details.tpl │ │ │ │ ├── customer_logged.tpl │ │ │ │ ├── customer_login.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ ├── search_box.tpl │ │ │ │ ├── search_results.tpl │ │ │ │ ├── store_admin.tpl │ │ │ │ └── store_front.tpl │ │ ├── scripts │ │ │ └── ajax.js │ │ ├── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ │ ├── test_card.php │ │ ├── test_encryption.php │ │ └── test_hasher.php │ └── Database │ │ └── chapter18.sql ├── Chapter 19 │ ├── Code │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── admin.php │ │ ├── business │ │ │ ├── catalog.php │ │ │ ├── customer.php │ │ │ ├── database_handler.php │ │ │ ├── error_handler.php │ │ │ ├── i_pipeline_section.php │ │ │ ├── order_processor.php │ │ │ ├── orders.php │ │ │ ├── password_hasher.php │ │ │ ├── ps_check_funds.php │ │ │ ├── ps_check_stock.php │ │ │ ├── ps_dummy.php │ │ │ ├── ps_final_notification.php │ │ │ ├── ps_initial_notification.php │ │ │ ├── ps_ship_goods.php │ │ │ ├── ps_ship_ok.php │ │ │ ├── ps_stock_ok.php │ │ │ ├── ps_take_payment.php │ │ │ ├── secure_card.php │ │ │ ├── shopping_cart.php │ │ │ └── symmetric_crypt.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── admin_attribute_values.php │ │ │ ├── admin_attributes.php │ │ │ ├── admin_carts.php │ │ │ ├── admin_categories.php │ │ │ ├── admin_departments.php │ │ │ ├── admin_login.php │ │ │ ├── admin_menu.php │ │ │ ├── admin_order_details.php │ │ │ ├── admin_orders.php │ │ │ ├── admin_product_details.php │ │ │ ├── admin_products.php │ │ │ ├── application.php │ │ │ ├── cart_details.php │ │ │ ├── cart_summary.php │ │ │ ├── categories_list.php │ │ │ ├── checkout_info.php │ │ │ ├── customer_address.php │ │ │ ├── customer_credit_card.php │ │ │ ├── customer_details.php │ │ │ ├── customer_logged.php │ │ │ ├── customer_login.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── first_page_contents.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── search_box.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_admin.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── admin_attribute_values.tpl │ │ │ │ ├── admin_attributes.tpl │ │ │ │ ├── admin_carts.tpl │ │ │ │ ├── admin_categories.tpl │ │ │ │ ├── admin_departments.tpl │ │ │ │ ├── admin_login.tpl │ │ │ │ ├── admin_menu.tpl │ │ │ │ ├── admin_order_details.tpl │ │ │ │ ├── admin_orders.tpl │ │ │ │ ├── admin_product_details.tpl │ │ │ │ ├── admin_products.tpl │ │ │ │ ├── blank.tpl │ │ │ │ ├── cart_details.tpl │ │ │ │ ├── cart_summary.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── checkout_info.tpl │ │ │ │ ├── checkout_not_logged.tpl │ │ │ │ ├── customer_address.tpl │ │ │ │ ├── customer_credit_card.tpl │ │ │ │ ├── customer_details.tpl │ │ │ │ ├── customer_logged.tpl │ │ │ │ ├── customer_login.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── order_done.tpl │ │ │ │ ├── order_error.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ ├── search_box.tpl │ │ │ │ ├── search_results.tpl │ │ │ │ ├── store_admin.tpl │ │ │ │ └── store_front.tpl │ │ ├── scripts │ │ │ └── ajax.js │ │ └── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ └── Database │ │ └── chapter19.sql ├── Chapter 20 │ └── Code │ │ ├── authorize.net │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── admin.php │ │ ├── business │ │ │ ├── authorize_net_request.php │ │ │ ├── catalog.php │ │ │ ├── customer.php │ │ │ ├── database_handler.php │ │ │ ├── error_handler.php │ │ │ ├── i_pipeline_section.php │ │ │ ├── order_processor.php │ │ │ ├── orders.php │ │ │ ├── password_hasher.php │ │ │ ├── ps_check_funds.php │ │ │ ├── ps_check_stock.php │ │ │ ├── ps_dummy.php │ │ │ ├── ps_final_notification.php │ │ │ ├── ps_initial_notification.php │ │ │ ├── ps_ship_goods.php │ │ │ ├── ps_ship_ok.php │ │ │ ├── ps_stock_ok.php │ │ │ ├── ps_take_payment.php │ │ │ ├── secure_card.php │ │ │ ├── shopping_cart.php │ │ │ └── symmetric_crypt.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── admin_attribute_values.php │ │ │ ├── admin_attributes.php │ │ │ ├── admin_carts.php │ │ │ ├── admin_categories.php │ │ │ ├── admin_departments.php │ │ │ ├── admin_login.php │ │ │ ├── admin_menu.php │ │ │ ├── admin_order_details.php │ │ │ ├── admin_orders.php │ │ │ ├── admin_product_details.php │ │ │ ├── admin_products.php │ │ │ ├── application.php │ │ │ ├── cart_details.php │ │ │ ├── cart_summary.php │ │ │ ├── categories_list.php │ │ │ ├── checkout_info.php │ │ │ ├── customer_address.php │ │ │ ├── customer_credit_card.php │ │ │ ├── customer_details.php │ │ │ ├── customer_logged.php │ │ │ ├── customer_login.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── first_page_contents.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── search_box.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_admin.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── admin_attribute_values.tpl │ │ │ │ ├── admin_attributes.tpl │ │ │ │ ├── admin_carts.tpl │ │ │ │ ├── admin_categories.tpl │ │ │ │ ├── admin_departments.tpl │ │ │ │ ├── admin_login.tpl │ │ │ │ ├── admin_menu.tpl │ │ │ │ ├── admin_order_details.tpl │ │ │ │ ├── admin_orders.tpl │ │ │ │ ├── admin_product_details.tpl │ │ │ │ ├── admin_products.tpl │ │ │ │ ├── blank.tpl │ │ │ │ ├── cart_details.tpl │ │ │ │ ├── cart_summary.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── checkout_info.tpl │ │ │ │ ├── checkout_not_logged.tpl │ │ │ │ ├── customer_address.tpl │ │ │ │ ├── customer_credit_card.tpl │ │ │ │ ├── customer_details.tpl │ │ │ │ ├── customer_logged.tpl │ │ │ │ ├── customer_login.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── order_done.tpl │ │ │ │ ├── order_error.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ ├── search_box.tpl │ │ │ │ ├── search_results.tpl │ │ │ │ ├── store_admin.tpl │ │ │ │ └── store_front.tpl │ │ ├── scripts │ │ │ └── ajax.js │ │ ├── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ │ └── test_authorize_net.php │ │ └── datacash │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── admin.php │ │ ├── business │ │ ├── catalog.php │ │ ├── customer.php │ │ ├── database_handler.php │ │ ├── datacash_request.php │ │ ├── error_handler.php │ │ ├── i_pipeline_section.php │ │ ├── order_processor.php │ │ ├── orders.php │ │ ├── password_hasher.php │ │ ├── ps_check_funds.php │ │ ├── ps_check_stock.php │ │ ├── ps_dummy.php │ │ ├── ps_final_notification.php │ │ ├── ps_initial_notification.php │ │ ├── ps_ship_goods.php │ │ ├── ps_ship_ok.php │ │ ├── ps_stock_ok.php │ │ ├── ps_take_payment.php │ │ ├── secure_card.php │ │ ├── shopping_cart.php │ │ └── symmetric_crypt.php │ │ ├── include │ │ ├── config.php │ │ └── configs │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ ├── admin_attribute_values.php │ │ ├── admin_attributes.php │ │ ├── admin_carts.php │ │ ├── admin_categories.php │ │ ├── admin_departments.php │ │ ├── admin_login.php │ │ ├── admin_menu.php │ │ ├── admin_order_details.php │ │ ├── admin_orders.php │ │ ├── admin_product_details.php │ │ ├── admin_products.php │ │ ├── application.php │ │ ├── cart_details.php │ │ ├── cart_summary.php │ │ ├── categories_list.php │ │ ├── checkout_info.php │ │ ├── customer_address.php │ │ ├── customer_credit_card.php │ │ ├── customer_details.php │ │ ├── customer_logged.php │ │ ├── customer_login.php │ │ ├── department.php │ │ ├── departments_list.php │ │ ├── first_page_contents.php │ │ ├── link.php │ │ ├── product.php │ │ ├── products_list.php │ │ ├── search_box.php │ │ ├── smarty_plugins │ │ │ └── function.load_presentation_object.php │ │ ├── store_admin.php │ │ ├── store_front.php │ │ └── templates │ │ │ ├── admin_attribute_values.tpl │ │ │ ├── admin_attributes.tpl │ │ │ ├── admin_carts.tpl │ │ │ ├── admin_categories.tpl │ │ │ ├── admin_departments.tpl │ │ │ ├── admin_login.tpl │ │ │ ├── admin_menu.tpl │ │ │ ├── admin_order_details.tpl │ │ │ ├── admin_orders.tpl │ │ │ ├── admin_product_details.tpl │ │ │ ├── admin_products.tpl │ │ │ ├── blank.tpl │ │ │ ├── cart_details.tpl │ │ │ ├── cart_summary.tpl │ │ │ ├── categories_list.tpl │ │ │ ├── checkout_info.tpl │ │ │ ├── checkout_not_logged.tpl │ │ │ ├── customer_address.tpl │ │ │ ├── customer_credit_card.tpl │ │ │ ├── customer_details.tpl │ │ │ ├── customer_logged.tpl │ │ │ ├── customer_login.tpl │ │ │ ├── department.tpl │ │ │ ├── departments_list.tpl │ │ │ ├── first_page_contents.tpl │ │ │ ├── order_done.tpl │ │ │ ├── order_error.tpl │ │ │ ├── product.tpl │ │ │ ├── products_list.tpl │ │ │ ├── search_box.tpl │ │ │ ├── search_results.tpl │ │ │ ├── store_admin.tpl │ │ │ └── store_front.tpl │ │ ├── scripts │ │ └── ajax.js │ │ ├── styles │ │ ├── base-min.css │ │ ├── fonts-min.css │ │ ├── grids-min.css │ │ ├── reset-min.css │ │ └── tshirtshop.css │ │ └── test_datacash.php ├── Chapter 21 │ ├── Code │ │ ├── authorize.net │ │ │ ├── .htaccess │ │ │ ├── 404.php │ │ │ ├── 500.php │ │ │ ├── admin.php │ │ │ ├── business │ │ │ │ ├── authorize_net_request.php │ │ │ │ ├── catalog.php │ │ │ │ ├── customer.php │ │ │ │ ├── database_handler.php │ │ │ │ ├── error_handler.php │ │ │ │ ├── i_pipeline_section.php │ │ │ │ ├── order_processor.php │ │ │ │ ├── orders.php │ │ │ │ ├── password_hasher.php │ │ │ │ ├── ps_check_funds.php │ │ │ │ ├── ps_check_stock.php │ │ │ │ ├── ps_dummy.php │ │ │ │ ├── ps_final_notification.php │ │ │ │ ├── ps_initial_notification.php │ │ │ │ ├── ps_ship_goods.php │ │ │ │ ├── ps_ship_ok.php │ │ │ │ ├── ps_stock_ok.php │ │ │ │ ├── ps_take_payment.php │ │ │ │ ├── secure_card.php │ │ │ │ ├── shopping_cart.php │ │ │ │ └── symmetric_crypt.php │ │ │ ├── include │ │ │ │ ├── config.php │ │ │ │ └── configs │ │ │ │ │ └── site.conf │ │ │ ├── index.php │ │ │ ├── presentation │ │ │ │ ├── admin_attribute_values.php │ │ │ │ ├── admin_attributes.php │ │ │ │ ├── admin_carts.php │ │ │ │ ├── admin_categories.php │ │ │ │ ├── admin_departments.php │ │ │ │ ├── admin_login.php │ │ │ │ ├── admin_menu.php │ │ │ │ ├── admin_order_details.php │ │ │ │ ├── admin_orders.php │ │ │ │ ├── admin_product_details.php │ │ │ │ ├── admin_products.php │ │ │ │ ├── application.php │ │ │ │ ├── cart_details.php │ │ │ │ ├── cart_summary.php │ │ │ │ ├── categories_list.php │ │ │ │ ├── checkout_info.php │ │ │ │ ├── customer_address.php │ │ │ │ ├── customer_credit_card.php │ │ │ │ ├── customer_details.php │ │ │ │ ├── customer_logged.php │ │ │ │ ├── customer_login.php │ │ │ │ ├── department.php │ │ │ │ ├── departments_list.php │ │ │ │ ├── first_page_contents.php │ │ │ │ ├── link.php │ │ │ │ ├── product.php │ │ │ │ ├── products_list.php │ │ │ │ ├── reviews.php │ │ │ │ ├── search_box.php │ │ │ │ ├── smarty_plugins │ │ │ │ │ └── function.load_presentation_object.php │ │ │ │ ├── store_admin.php │ │ │ │ ├── store_front.php │ │ │ │ └── templates │ │ │ │ │ ├── admin_attribute_values.tpl │ │ │ │ │ ├── admin_attributes.tpl │ │ │ │ │ ├── admin_carts.tpl │ │ │ │ │ ├── admin_categories.tpl │ │ │ │ │ ├── admin_departments.tpl │ │ │ │ │ ├── admin_login.tpl │ │ │ │ │ ├── admin_menu.tpl │ │ │ │ │ ├── admin_order_details.tpl │ │ │ │ │ ├── admin_orders.tpl │ │ │ │ │ ├── admin_product_details.tpl │ │ │ │ │ ├── admin_products.tpl │ │ │ │ │ ├── blank.tpl │ │ │ │ │ ├── cart_details.tpl │ │ │ │ │ ├── cart_summary.tpl │ │ │ │ │ ├── categories_list.tpl │ │ │ │ │ ├── checkout_info.tpl │ │ │ │ │ ├── checkout_not_logged.tpl │ │ │ │ │ ├── customer_address.tpl │ │ │ │ │ ├── customer_credit_card.tpl │ │ │ │ │ ├── customer_details.tpl │ │ │ │ │ ├── customer_logged.tpl │ │ │ │ │ ├── customer_login.tpl │ │ │ │ │ ├── department.tpl │ │ │ │ │ ├── departments_list.tpl │ │ │ │ │ ├── first_page_contents.tpl │ │ │ │ │ ├── order_done.tpl │ │ │ │ │ ├── order_error.tpl │ │ │ │ │ ├── product.tpl │ │ │ │ │ ├── products_list.tpl │ │ │ │ │ ├── reviews.tpl │ │ │ │ │ ├── search_box.tpl │ │ │ │ │ ├── search_results.tpl │ │ │ │ │ ├── store_admin.tpl │ │ │ │ │ └── store_front.tpl │ │ │ ├── scripts │ │ │ │ └── ajax.js │ │ │ └── styles │ │ │ │ ├── base-min.css │ │ │ │ ├── fonts-min.css │ │ │ │ ├── grids-min.css │ │ │ │ ├── reset-min.css │ │ │ │ └── tshirtshop.css │ │ └── datacash │ │ │ ├── .htaccess │ │ │ ├── 404.php │ │ │ ├── 500.php │ │ │ ├── admin.php │ │ │ ├── business │ │ │ ├── catalog.php │ │ │ ├── customer.php │ │ │ ├── database_handler.php │ │ │ ├── datacash_request.php │ │ │ ├── error_handler.php │ │ │ ├── i_pipeline_section.php │ │ │ ├── order_processor.php │ │ │ ├── orders.php │ │ │ ├── password_hasher.php │ │ │ ├── ps_check_funds.php │ │ │ ├── ps_check_stock.php │ │ │ ├── ps_dummy.php │ │ │ ├── ps_final_notification.php │ │ │ ├── ps_initial_notification.php │ │ │ ├── ps_ship_goods.php │ │ │ ├── ps_ship_ok.php │ │ │ ├── ps_stock_ok.php │ │ │ ├── ps_take_payment.php │ │ │ ├── secure_card.php │ │ │ ├── shopping_cart.php │ │ │ └── symmetric_crypt.php │ │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ │ ├── index.php │ │ │ ├── presentation │ │ │ ├── admin_attribute_values.php │ │ │ ├── admin_attributes.php │ │ │ ├── admin_carts.php │ │ │ ├── admin_categories.php │ │ │ ├── admin_departments.php │ │ │ ├── admin_login.php │ │ │ ├── admin_menu.php │ │ │ ├── admin_order_details.php │ │ │ ├── admin_orders.php │ │ │ ├── admin_product_details.php │ │ │ ├── admin_products.php │ │ │ ├── application.php │ │ │ ├── cart_details.php │ │ │ ├── cart_summary.php │ │ │ ├── categories_list.php │ │ │ ├── checkout_info.php │ │ │ ├── customer_address.php │ │ │ ├── customer_credit_card.php │ │ │ ├── customer_details.php │ │ │ ├── customer_logged.php │ │ │ ├── customer_login.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── first_page_contents.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── reviews.php │ │ │ ├── search_box.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_admin.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── admin_attribute_values.tpl │ │ │ │ ├── admin_attributes.tpl │ │ │ │ ├── admin_carts.tpl │ │ │ │ ├── admin_categories.tpl │ │ │ │ ├── admin_departments.tpl │ │ │ │ ├── admin_login.tpl │ │ │ │ ├── admin_menu.tpl │ │ │ │ ├── admin_order_details.tpl │ │ │ │ ├── admin_orders.tpl │ │ │ │ ├── admin_product_details.tpl │ │ │ │ ├── admin_products.tpl │ │ │ │ ├── blank.tpl │ │ │ │ ├── cart_details.tpl │ │ │ │ ├── cart_summary.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── checkout_info.tpl │ │ │ │ ├── checkout_not_logged.tpl │ │ │ │ ├── customer_address.tpl │ │ │ │ ├── customer_credit_card.tpl │ │ │ │ ├── customer_details.tpl │ │ │ │ ├── customer_logged.tpl │ │ │ │ ├── customer_login.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── order_done.tpl │ │ │ │ ├── order_error.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ ├── reviews.tpl │ │ │ │ ├── search_box.tpl │ │ │ │ ├── search_results.tpl │ │ │ │ ├── store_admin.tpl │ │ │ │ └── store_front.tpl │ │ │ ├── scripts │ │ │ └── ajax.js │ │ │ └── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ └── Database │ │ └── chapter21.sql ├── Chapter 22 │ └── Code │ │ ├── authorize.net │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── admin.php │ │ ├── business │ │ │ ├── amazon.php │ │ │ ├── authorize_net_request.php │ │ │ ├── catalog.php │ │ │ ├── customer.php │ │ │ ├── database_handler.php │ │ │ ├── error_handler.php │ │ │ ├── i_pipeline_section.php │ │ │ ├── order_processor.php │ │ │ ├── orders.php │ │ │ ├── password_hasher.php │ │ │ ├── ps_check_funds.php │ │ │ ├── ps_check_stock.php │ │ │ ├── ps_dummy.php │ │ │ ├── ps_final_notification.php │ │ │ ├── ps_initial_notification.php │ │ │ ├── ps_ship_goods.php │ │ │ ├── ps_ship_ok.php │ │ │ ├── ps_stock_ok.php │ │ │ ├── ps_take_payment.php │ │ │ ├── secure_card.php │ │ │ ├── shopping_cart.php │ │ │ └── symmetric_crypt.php │ │ ├── include │ │ │ ├── config.php │ │ │ └── configs │ │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ │ ├── admin_attribute_values.php │ │ │ ├── admin_attributes.php │ │ │ ├── admin_carts.php │ │ │ ├── admin_categories.php │ │ │ ├── admin_departments.php │ │ │ ├── admin_login.php │ │ │ ├── admin_menu.php │ │ │ ├── admin_order_details.php │ │ │ ├── admin_orders.php │ │ │ ├── admin_product_details.php │ │ │ ├── admin_products.php │ │ │ ├── amazon_products_list.php │ │ │ ├── application.php │ │ │ ├── cart_details.php │ │ │ ├── cart_summary.php │ │ │ ├── categories_list.php │ │ │ ├── checkout_info.php │ │ │ ├── customer_address.php │ │ │ ├── customer_credit_card.php │ │ │ ├── customer_details.php │ │ │ ├── customer_logged.php │ │ │ ├── customer_login.php │ │ │ ├── department.php │ │ │ ├── departments_list.php │ │ │ ├── first_page_contents.php │ │ │ ├── link.php │ │ │ ├── product.php │ │ │ ├── products_list.php │ │ │ ├── reviews.php │ │ │ ├── search_box.php │ │ │ ├── smarty_plugins │ │ │ │ └── function.load_presentation_object.php │ │ │ ├── store_admin.php │ │ │ ├── store_front.php │ │ │ └── templates │ │ │ │ ├── admin_attribute_values.tpl │ │ │ │ ├── admin_attributes.tpl │ │ │ │ ├── admin_carts.tpl │ │ │ │ ├── admin_categories.tpl │ │ │ │ ├── admin_departments.tpl │ │ │ │ ├── admin_login.tpl │ │ │ │ ├── admin_menu.tpl │ │ │ │ ├── admin_order_details.tpl │ │ │ │ ├── admin_orders.tpl │ │ │ │ ├── admin_product_details.tpl │ │ │ │ ├── admin_products.tpl │ │ │ │ ├── amazon_products_list.tpl │ │ │ │ ├── blank.tpl │ │ │ │ ├── cart_details.tpl │ │ │ │ ├── cart_summary.tpl │ │ │ │ ├── categories_list.tpl │ │ │ │ ├── checkout_info.tpl │ │ │ │ ├── checkout_not_logged.tpl │ │ │ │ ├── customer_address.tpl │ │ │ │ ├── customer_credit_card.tpl │ │ │ │ ├── customer_details.tpl │ │ │ │ ├── customer_logged.tpl │ │ │ │ ├── customer_login.tpl │ │ │ │ ├── department.tpl │ │ │ │ ├── departments_list.tpl │ │ │ │ ├── first_page_contents.tpl │ │ │ │ ├── order_done.tpl │ │ │ │ ├── order_error.tpl │ │ │ │ ├── product.tpl │ │ │ │ ├── products_list.tpl │ │ │ │ ├── reviews.tpl │ │ │ │ ├── search_box.tpl │ │ │ │ ├── search_results.tpl │ │ │ │ ├── store_admin.tpl │ │ │ │ └── store_front.tpl │ │ ├── scripts │ │ │ └── ajax.js │ │ ├── styles │ │ │ ├── base-min.css │ │ │ ├── fonts-min.css │ │ │ ├── grids-min.css │ │ │ ├── reset-min.css │ │ │ └── tshirtshop.css │ │ ├── test_rest.php │ │ └── test_soap.php │ │ └── datacash │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 500.php │ │ ├── admin.php │ │ ├── business │ │ ├── amazon.php │ │ ├── catalog.php │ │ ├── customer.php │ │ ├── database_handler.php │ │ ├── datacash_request.php │ │ ├── error_handler.php │ │ ├── i_pipeline_section.php │ │ ├── order_processor.php │ │ ├── orders.php │ │ ├── password_hasher.php │ │ ├── ps_check_funds.php │ │ ├── ps_check_stock.php │ │ ├── ps_dummy.php │ │ ├── ps_final_notification.php │ │ ├── ps_initial_notification.php │ │ ├── ps_ship_goods.php │ │ ├── ps_ship_ok.php │ │ ├── ps_stock_ok.php │ │ ├── ps_take_payment.php │ │ ├── secure_card.php │ │ ├── shopping_cart.php │ │ └── symmetric_crypt.php │ │ ├── include │ │ ├── config.php │ │ └── configs │ │ │ └── site.conf │ │ ├── index.php │ │ ├── presentation │ │ ├── admin_attribute_values.php │ │ ├── admin_attributes.php │ │ ├── admin_carts.php │ │ ├── admin_categories.php │ │ ├── admin_departments.php │ │ ├── admin_login.php │ │ ├── admin_menu.php │ │ ├── admin_order_details.php │ │ ├── admin_orders.php │ │ ├── admin_product_details.php │ │ ├── admin_products.php │ │ ├── amazon_products_list.php │ │ ├── application.php │ │ ├── cart_details.php │ │ ├── cart_summary.php │ │ ├── categories_list.php │ │ ├── checkout_info.php │ │ ├── customer_address.php │ │ ├── customer_credit_card.php │ │ ├── customer_details.php │ │ ├── customer_logged.php │ │ ├── customer_login.php │ │ ├── department.php │ │ ├── departments_list.php │ │ ├── first_page_contents.php │ │ ├── link.php │ │ ├── product.php │ │ ├── products_list.php │ │ ├── reviews.php │ │ ├── search_box.php │ │ ├── smarty_plugins │ │ │ └── function.load_presentation_object.php │ │ ├── store_admin.php │ │ ├── store_front.php │ │ └── templates │ │ │ ├── admin_attribute_values.tpl │ │ │ ├── admin_attributes.tpl │ │ │ ├── admin_carts.tpl │ │ │ ├── admin_categories.tpl │ │ │ ├── admin_departments.tpl │ │ │ ├── admin_login.tpl │ │ │ ├── admin_menu.tpl │ │ │ ├── admin_order_details.tpl │ │ │ ├── admin_orders.tpl │ │ │ ├── admin_product_details.tpl │ │ │ ├── admin_products.tpl │ │ │ ├── amazon_products_list.tpl │ │ │ ├── blank.tpl │ │ │ ├── cart_details.tpl │ │ │ ├── cart_summary.tpl │ │ │ ├── categories_list.tpl │ │ │ ├── checkout_info.tpl │ │ │ ├── checkout_not_logged.tpl │ │ │ ├── customer_address.tpl │ │ │ ├── customer_credit_card.tpl │ │ │ ├── customer_details.tpl │ │ │ ├── customer_logged.tpl │ │ │ ├── customer_login.tpl │ │ │ ├── department.tpl │ │ │ ├── departments_list.tpl │ │ │ ├── first_page_contents.tpl │ │ │ ├── order_done.tpl │ │ │ ├── order_error.tpl │ │ │ ├── product.tpl │ │ │ ├── products_list.tpl │ │ │ ├── reviews.tpl │ │ │ ├── search_box.tpl │ │ │ ├── search_results.tpl │ │ │ ├── store_admin.tpl │ │ │ └── store_front.tpl │ │ ├── scripts │ │ └── ajax.js │ │ ├── styles │ │ ├── base-min.css │ │ ├── fonts-min.css │ │ ├── grids-min.css │ │ ├── reset-min.css │ │ └── tshirtshop.css │ │ ├── test_rest.php │ │ └── test_soap.php ├── Database Complete │ └── complete.sql ├── Images │ ├── images │ │ ├── Thumbs.db │ │ └── tshirtshop.png │ └── product_images │ │ ├── Thumbs.db │ │ ├── a-partridge-in-a-pear-tree-2.gif │ │ ├── a-partridge-in-a-pear-tree-thumbnail.gif │ │ ├── a-partridge-in-a-pear-tree.gif │ │ ├── adoration-of-the-kings-2.gif │ │ ├── adoration-of-the-kings-thumbnail.gif │ │ ├── adoration-of-the-kings.gif │ │ ├── afghan-flower-2.gif │ │ ├── afghan-flower-thumbnail.gif │ │ ├── afghan-flower.gif │ │ ├── albania-flower-2.gif │ │ ├── albania-flower-thumbnail.gif │ │ ├── albania-flower.gif │ │ ├── alsace-2.gif │ │ ├── alsace-thumbnail.gif │ │ ├── alsace.gif │ │ ├── altar-piece-2.gif │ │ ├── altar-piece-thumbnail.gif │ │ ├── altar-piece.gif │ │ ├── apocalypse-tapestry-2.gif │ │ ├── apocalypse-tapestry-thumbnail.gif │ │ ├── apocalypse-tapestry.gif │ │ ├── arc-d-triomphe-2.gif │ │ ├── arc-d-triomphe-thumbnail.gif │ │ ├── arc-d-triomphe.gif │ │ ├── austria-flower-2.gif │ │ ├── austria-flower-thumbnail.gif │ │ ├── austria-flower.gif │ │ ├── baby-seal-2.gif │ │ ├── baby-seal-thumbnail.gif │ │ ├── baby-seal.gif │ │ ├── birds-2.gif │ │ ├── birds-thumbnail.gif │ │ ├── birds.gif │ │ ├── buffalo-2.gif │ │ ├── buffalo-thumbnail.gif │ │ ├── buffalo.gif │ │ ├── bulgarian-flower-2.gif │ │ ├── bulgarian-flower-thumbnail.gif │ │ ├── bulgarian-flower.gif │ │ ├── canada-goose-2.gif │ │ ├── canada-goose-thumbnail.gif │ │ ├── canada-goose.gif │ │ ├── caribou-2.gif │ │ ├── caribou-thumbnail.gif │ │ ├── caribou.gif │ │ ├── centaur-2.gif │ │ ├── centaur-thumbnail.gif │ │ ├── centaur.gif │ │ ├── chartres-cathedral-2.gif │ │ ├── chartres-cathedral-thumbnail.gif │ │ ├── chartres-cathedral.gif │ │ ├── christmas-seal-2.gif │ │ ├── christmas-seal-thumbnail.gif │ │ ├── christmas-seal.gif │ │ ├── christmas-tree-2.gif │ │ ├── christmas-tree-thumbnail.gif │ │ ├── christmas-tree.gif │ │ ├── coat-of-arms-2.gif │ │ ├── coat-of-arms-thumbnail.gif │ │ ├── coat-of-arms.gif │ │ ├── colobus-2.gif │ │ ├── colobus-thumbnail.gif │ │ ├── colobus.gif │ │ ├── colombia-flower-2.gif │ │ ├── colombia-flower-thumbnail.gif │ │ ├── colombia-flower.gif │ │ ├── congo-flower-2.gif │ │ ├── congo-flower-thumbnail.gif │ │ ├── congo-flower.gif │ │ ├── congo-rhino-2.gif │ │ ├── congo-rhino-thumbnail.gif │ │ ├── congo-rhino.gif │ │ ├── corsica-2.gif │ │ ├── corsica-thumbnail.gif │ │ ├── corsica.gif │ │ ├── costa-rica-flower-2.gif │ │ ├── costa-rica-flower-thumbnail.gif │ │ ├── costa-rica-flower.gif │ │ ├── county-of-nice-2.gif │ │ ├── county-of-nice-thumbnail.gif │ │ ├── county-of-nice.gif │ │ ├── dutch-sea-horse-2.gif │ │ ├── dutch-sea-horse-thumbnail.gif │ │ ├── dutch-sea-horse.gif │ │ ├── dutch-swans-2.gif │ │ ├── dutch-swans-thumbnail.gif │ │ ├── dutch-swans.gif │ │ ├── easter-rebellion-2.gif │ │ ├── easter-rebellion-thumbnail.gif │ │ ├── easter-rebellion.gif │ │ ├── equatorial-rhino-2.gif │ │ ├── equatorial-rhino-thumbnail.gif │ │ ├── equatorial-rhino.gif │ │ ├── espresso-2.gif │ │ ├── espresso-thumbnail.gif │ │ ├── espresso.gif │ │ ├── ethiopian-elephant-2.gif │ │ ├── ethiopian-elephant-thumbnail.gif │ │ ├── ethiopian-elephant.gif │ │ ├── ethiopian-rhino-2.gif │ │ ├── ethiopian-rhino-thumbnail.gif │ │ ├── ethiopian-rhino.gif │ │ ├── gabon-flower-2.gif │ │ ├── gabon-flower-thumbnail.gif │ │ ├── gabon-flower.gif │ │ ├── galileo-2.gif │ │ ├── galileo-thumbnail.gif │ │ ├── galileo.gif │ │ ├── gallic-cock-2.gif │ │ ├── gallic-cock-thumbnail.gif │ │ ├── gallic-cock.gif │ │ ├── ghana-flower-2.gif │ │ ├── ghana-flower-thumbnail.gif │ │ ├── ghana-flower.gif │ │ ├── guiness-2.gif │ │ ├── guiness-thumbnail.gif │ │ ├── guiness.gif │ │ ├── haute-couture-2.gif │ │ ├── haute-couture-thumbnail.gif │ │ ├── haute-couture.gif │ │ ├── holly-cat-2.gif │ │ ├── holly-cat-thumbnail.gif │ │ ├── holly-cat.gif │ │ ├── hunt-2.gif │ │ ├── hunt-thumbnail.gif │ │ ├── hunt.gif │ │ ├── ifni-fish-2.gif │ │ ├── ifni-fish-thumbnail.gif │ │ ├── ifni-fish.gif │ │ ├── iris-2.gif │ │ ├── iris-thumbnail.gif │ │ ├── iris.gif │ │ ├── irish-coat-of-arms-2.gif │ │ ├── irish-coat-of-arms-thumbnail.gif │ │ ├── irish-coat-of-arms.gif │ │ ├── israel-flower-2.gif │ │ ├── israel-flower-thumbnail.gif │ │ ├── israel-flower.gif │ │ ├── italia-2.gif │ │ ├── italia-thumbnail.gif │ │ ├── italia.gif │ │ ├── italian-airmail-2.gif │ │ ├── italian-airmail-thumbnail.gif │ │ ├── italian-airmail.gif │ │ ├── italy-jesus-2.gif │ │ ├── italy-jesus-thumbnail.gif │ │ ├── italy-jesus.gif │ │ ├── italy-maria-2.gif │ │ ├── italy-maria-thumbnail.gif │ │ ├── italy-maria.gif │ │ ├── kat-over-new-moon-2.gif │ │ ├── kat-over-new-moon-thumbnail.gif │ │ ├── kat-over-new-moon.gif │ │ ├── king-salmon-2.gif │ │ ├── king-salmon-thumbnail.gif │ │ ├── king-salmon.gif │ │ ├── laos-bird-2.gif │ │ ├── laos-bird-thumbnail.gif │ │ ├── laos-bird.gif │ │ ├── laotian-elephant-2.gif │ │ ├── laotian-elephant-thumbnail.gif │ │ ├── laotian-elephant.gif │ │ ├── liberian-elephant-2.gif │ │ ├── liberian-elephant-thumbnail.gif │ │ ├── liberian-elephant.gif │ │ ├── lorraine-2.gif │ │ ├── lorraine-thumbnail.gif │ │ ├── lorraine.gif │ │ ├── love-2.gif │ │ ├── love-thumbnail.gif │ │ ├── love.gif │ │ ├── madonna-child-2.gif │ │ ├── madonna-child-thumbnail.gif │ │ ├── madonna-child.gif │ │ ├── marianne-2.gif │ │ ├── marianne-thumbnail.gif │ │ ├── marianne.gif │ │ ├── mazzini-2.gif │ │ ├── mazzini-thumbnail.gif │ │ ├── mazzini.gif │ │ ├── mercury-2.gif │ │ ├── mercury-thumbnail.gif │ │ ├── mercury.gif │ │ ├── mistletoe-2.gif │ │ ├── mistletoe-thumbnail.gif │ │ ├── mistletoe.gif │ │ ├── mozambique-lion-2.gif │ │ ├── mozambique-lion-thumbnail.gif │ │ ├── mozambique-lion.gif │ │ ├── musk-ox-2.gif │ │ ├── musk-ox-thumbnail.gif │ │ ├── musk-ox.gif │ │ ├── mustache-monkey-2.gif │ │ ├── mustache-monkey-thumbnail.gif │ │ ├── mustache-monkey.gif │ │ ├── notre-dame-2.gif │ │ ├── notre-dame-thumbnail.gif │ │ ├── notre-dame.gif │ │ ├── paris-peace-conference-2.gif │ │ ├── paris-peace-conference-thumbnail.gif │ │ ├── paris-peace-conference.gif │ │ ├── peru-llama-2.gif │ │ ├── peru-llama-thumbnail.gif │ │ ├── peru-llama.gif │ │ ├── poland-flower-2.gif │ │ ├── poland-flower-thumbnail.gif │ │ ├── poland-flower.gif │ │ ├── romania-alsatian-2.gif │ │ ├── romania-alsatian-thumbnail.gif │ │ ├── romania-alsatian.gif │ │ ├── romania-flower-2.gif │ │ ├── romania-flower-thumbnail.gif │ │ ├── romania-flower.gif │ │ ├── romulus-remus-2.gif │ │ ├── romulus-remus-thumbnail.gif │ │ ├── romulus-remus.gif │ │ ├── russia-flower-2.gif │ │ ├── russia-flower-thumbnail.gif │ │ ├── russia-flower.gif │ │ ├── sambar-2.gif │ │ ├── sambar-thumbnail.gif │ │ ├── sambar.gif │ │ ├── san-marino-flower-2.gif │ │ ├── san-marino-flower-thumbnail.gif │ │ ├── san-marino-flower.gif │ │ ├── sarah-bernhardt-2.gif │ │ ├── sarah-bernhardt-thumbnail.gif │ │ ├── sarah-bernhardt.gif │ │ ├── sea-gull-2.gif │ │ ├── sea-gull-thumbnail.gif │ │ ├── sea-gull.gif │ │ ├── snow-deer-2.gif │ │ ├── snow-deer-thumbnail.gif │ │ ├── snow-deer.gif │ │ ├── somali-fish-2.gif │ │ ├── somali-fish-thumbnail.gif │ │ ├── somali-fish.gif │ │ ├── somali-ostriches-2.gif │ │ ├── somali-ostriches-thumbnail.gif │ │ ├── somali-ostriches.gif │ │ ├── st-francis-2.gif │ │ ├── st-francis-thumbnail.gif │ │ ├── st-francis.gif │ │ ├── st-lucia-2.gif │ │ ├── st-lucia-thumbnail.gif │ │ ├── st-lucia.gif │ │ ├── st-lucy-2.gif │ │ ├── st-lucy-thumbnail.gif │ │ ├── st-lucy.gif │ │ ├── st-patrick-2.gif │ │ ├── st-patrick-thumbnail.gif │ │ ├── st-patrick.gif │ │ ├── st-peter-2.gif │ │ ├── st-peter-thumbnail.gif │ │ ├── st-peter.gif │ │ ├── suvla-bay-2.gif │ │ ├── suvla-bay-thumbnail.gif │ │ ├── suvla-bay.gif │ │ ├── swede-santa-2.gif │ │ ├── swede-santa-thumbnail.gif │ │ ├── swede-santa.gif │ │ ├── sword-of-light-2.gif │ │ ├── sword-of-light-thumbnail.gif │ │ ├── sword-of-light.gif │ │ ├── tankanyika-giraffe-2.gif │ │ ├── tankanyika-giraffe-thumbnail.gif │ │ ├── tankanyika-giraffe.gif │ │ ├── the-promise-of-spring-2.gif │ │ ├── the-promise-of-spring-thumbnail.gif │ │ ├── the-promise-of-spring.gif │ │ ├── the-rapture-of-psyche-2.gif │ │ ├── the-rapture-of-psyche-thumbnail.gif │ │ ├── the-rapture-of-psyche.gif │ │ ├── the-three-wise-men-2.gif │ │ ├── the-three-wise-men-thumbnail.gif │ │ ├── the-three-wise-men.gif │ │ ├── the-virgin-mary-2.gif │ │ ├── the-virgin-mary-thumbnail.gif │ │ ├── the-virgin-mary.gif │ │ ├── thomas-moore-2.gif │ │ ├── thomas-moore-thumbnail.gif │ │ ├── thomas-moore.gif │ │ ├── thrilling-love-2.gif │ │ ├── thrilling-love-thumbnail.gif │ │ ├── thrilling-love.gif │ │ ├── torch-2.gif │ │ ├── torch-thumbnail.gif │ │ ├── torch.gif │ │ ├── trout-2.gif │ │ ├── trout-thumbnail.gif │ │ ├── trout.gif │ │ ├── uruguay-flower-2.gif │ │ ├── uruguay-flower-thumbnail.gif │ │ ├── uruguay-flower.gif │ │ ├── visit-the-zoo-2.gif │ │ ├── visit-the-zoo-thumbnail.gif │ │ ├── visit-the-zoo.gif │ │ ├── weather-vane-2.gif │ │ ├── weather-vane-thumbnail.gif │ │ ├── weather-vane.gif │ │ ├── wreath-2.gif │ │ ├── wreath-thumbnail.gif │ │ └── wreath.gif └── Welcome.html ├── LICENSE.txt ├── README.md └── contributing.md /3912.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/3912.pdf -------------------------------------------------------------------------------- /3913.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/3913.pdf -------------------------------------------------------------------------------- /9781590598641.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/9781590598641.jpg -------------------------------------------------------------------------------- /Code Download/Chapter 03/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 03/Code/index.php: -------------------------------------------------------------------------------- 1 | display('store_front.tpl'); 17 | ?> 18 | -------------------------------------------------------------------------------- /Code Download/Chapter 03/Code/presentation/application.php: -------------------------------------------------------------------------------- 1 | template_dir = TEMPLATE_DIR; 17 | $this->compile_dir = COMPILE_DIR; 18 | $this->config_dir = CONFIG_DIR; 19 | } 20 | } 21 | ?> 22 | -------------------------------------------------------------------------------- /Code Download/Chapter 03/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 03/Code/test.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 03/Database/chapter03.sql: -------------------------------------------------------------------------------- 1 | -- Create tshirtshop database 2 | CREATE DATABASE `tshirtshop` 3 | DEFAULT CHARACTER SET 'utf8' COLLATE 'utf8_unicode_ci'; 4 | 5 | -- Create tshirtshopadmin user 6 | GRANT ALL PRIVILEGES ON `tshirtshop`.* 7 | TO 'tshirtshopadmin'@'localhost' IDENTIFIED BY 'tshirtshopadmin' 8 | WITH GRANT OPTION; 9 | -------------------------------------------------------------------------------- /Code Download/Chapter 03/Database/create_database.sql: -------------------------------------------------------------------------------- 1 | -- Create tshirtshop database 2 | CREATE DATABASE `tshirtshop` 3 | DEFAULT CHARACTER SET 'utf8' COLLATE 'utf8_unicode_ci'; 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 03/Database/create_user.sql: -------------------------------------------------------------------------------- 1 | -- Create tshirtshopadmin user 2 | GRANT ALL PRIVILEGES ON `tshirtshop`.* 3 | TO 'tshirtshopadmin'@'localhost' IDENTIFIED BY 'tshirtshopadmin' 4 | WITH GRANT OPTION; 5 | -------------------------------------------------------------------------------- /Code Download/Chapter 04/Code/business/catalog.php: -------------------------------------------------------------------------------- 1 | 17 | -------------------------------------------------------------------------------- /Code Download/Chapter 04/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 04/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 04/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 04/Code/presentation/store_front.php: -------------------------------------------------------------------------------- 1 | mSiteUrl = Link::Build(''); 10 | } 11 | } 12 | ?> 13 | -------------------------------------------------------------------------------- /Code Download/Chapter 04/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 04/Database/create_department_table.sql: -------------------------------------------------------------------------------- 1 | -- Create deparment table 2 | CREATE TABLE `department` ( 3 | `department_id` INT NOT NULL AUTO_INCREMENT, 4 | `name` VARCHAR(100) NOT NULL, 5 | `description` VARCHAR(1000), 6 | PRIMARY KEY (`department_id`) 7 | ) ENGINE=MyISAM; 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 04/Database/populate_department.sql: -------------------------------------------------------------------------------- 1 | -- Populate department table 2 | INSERT INTO `department` (`department_id`, `name`, `description`) VALUES 3 | (1, 'Regional', 'Proud of your country? Wear a T-shirt with a national symbol stamp!'), 4 | (2, 'Nature', 'Find beautiful T-shirts with animals and flowers in our Nature department!'), 5 | (3, 'Seasonal', 'Each time of the year has a special flavor. Our seasonal T-shirts express traditional symbols using unique postal stamp pictures.'); 6 | -------------------------------------------------------------------------------- /Code Download/Chapter 05/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 05/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 05/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 05/Code/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 05/Code/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {include file="products_list.tpl"} 6 | -------------------------------------------------------------------------------- /Code Download/Chapter 05/Code/presentation/templates/first_page_contents.tpl: -------------------------------------------------------------------------------- 1 | {* first_page_contents.tpl *} 2 |

3 | We hope you have fun developing TShirtShop, the e-commerce store from 4 | Beginning PHP and MySQL E-Commerce: From Novice to Professional! 5 |

6 |

7 | We have the largest collection of t-shirts with postal stamps on Earth! 8 | Browse our departments and cateogories to find your favorite! 9 |

10 | {include file="products_list.tpl"} 11 | -------------------------------------------------------------------------------- /Code Download/Chapter 05/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 05/Database/chapter05.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 05/Database/chapter05.sql -------------------------------------------------------------------------------- /Code Download/Chapter 05/Database/populate_product.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 05/Database/populate_product.sql -------------------------------------------------------------------------------- /Code Download/Chapter 06/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 06/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 06/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 06/Code/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 06/Code/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 06/Code/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 06/Code/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {include file="products_list.tpl"} 6 | -------------------------------------------------------------------------------- /Code Download/Chapter 06/Code/presentation/templates/first_page_contents.tpl: -------------------------------------------------------------------------------- 1 | {* first_page_contents.tpl *} 2 |

3 | We hope you have fun developing TShirtShop, the e-commerce store from 4 | Beginning PHP and MySQL E-Commerce: From Novice to Professional! 5 |

6 |

7 | We have the largest collection of t-shirts with postal stamps on Earth! 8 | Browse our departments and cateogories to find your favorite! 9 |

10 | {include file="products_list.tpl"} 11 | -------------------------------------------------------------------------------- /Code Download/Chapter 06/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 07/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 07/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 07/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 07/Code/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 07/Code/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 07/Code/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 07/Code/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {include file="products_list.tpl"} 6 | -------------------------------------------------------------------------------- /Code Download/Chapter 07/Code/presentation/templates/first_page_contents.tpl: -------------------------------------------------------------------------------- 1 | {* first_page_contents.tpl *} 2 |

3 | We hope you have fun developing TShirtShop, the e-commerce store from 4 | Beginning PHP and MySQL E-Commerce: From Novice to Professional! 5 |

6 |

7 | We have the largest collection of t-shirts with postal stamps on Earth! 8 | Browse our departments and cateogories to find your favorite! 9 |

10 | {include file="products_list.tpl"} 11 | -------------------------------------------------------------------------------- /Code Download/Chapter 07/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 08/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 08/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 08/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 08/Code/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 08/Code/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 08/Code/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 08/Code/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {include file="products_list.tpl"} 6 | -------------------------------------------------------------------------------- /Code Download/Chapter 08/Code/presentation/templates/first_page_contents.tpl: -------------------------------------------------------------------------------- 1 | {* first_page_contents.tpl *} 2 |

3 | We hope you have fun developing TShirtShop, the e-commerce store from 4 | Beginning PHP and MySQL E-Commerce: From Novice to Professional! 5 |

6 |

7 | We have the largest collection of t-shirts with postal stamps on Earth! 8 | Browse our departments and cateogories to find your favorite! 9 |

10 | {include file="products_list.tpl"} 11 | -------------------------------------------------------------------------------- /Code Download/Chapter 08/Code/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 08/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 09/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 09/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 09/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 09/Code/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 09/Code/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 09/Code/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 09/Code/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {include file="products_list.tpl"} 6 | -------------------------------------------------------------------------------- /Code Download/Chapter 09/Code/presentation/templates/first_page_contents.tpl: -------------------------------------------------------------------------------- 1 | {* first_page_contents.tpl *} 2 |

3 | We hope you have fun developing TShirtShop, the e-commerce store from 4 | Beginning PHP and MySQL E-Commerce: From Novice to Professional! 5 |

6 |

7 | We have the largest collection of t-shirts with postal stamps on Earth! 8 | Browse our departments and cateogories to find your favorite! 9 |

10 | {include file="products_list.tpl"} 11 | -------------------------------------------------------------------------------- /Code Download/Chapter 09/Code/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 09/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 10/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 10/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 10/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 10/Code/presentation/admin_menu.php: -------------------------------------------------------------------------------- 1 | mLinkToStoreAdmin = Link::ToAdmin(); 11 | $this->mLinkToStoreFront = Link::ToIndex(); 12 | $this->mLinkToLogout = Link::ToLogout(); 13 | } 14 | } 15 | ?> 16 | -------------------------------------------------------------------------------- /Code Download/Chapter 10/Code/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 10/Code/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 10/Code/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 10/Code/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 |

| 5 | CATALOG ADMIN | 6 | STOREFRONT | 7 | LOGOUT | 8 |

9 | -------------------------------------------------------------------------------- /Code Download/Chapter 10/Code/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 10/Code/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {include file="products_list.tpl"} 6 | -------------------------------------------------------------------------------- /Code Download/Chapter 10/Code/presentation/templates/first_page_contents.tpl: -------------------------------------------------------------------------------- 1 | {* first_page_contents.tpl *} 2 | {load_presentation_object filename="first_page_contents" assign="obj"} 3 |

4 | We hope you have fun developing TShirtShop, the e-commerce store from 5 | Beginning PHP and MySQL E-Commerce: From Novice to Professional! 6 |

7 |

8 | We have the largest collection of t-shirts with postal stamps on Earth! 9 | Browse our departments and cateogories to find your favorite! 10 |

11 |

Access the admin page.

12 | {include file="products_list.tpl"} 13 | -------------------------------------------------------------------------------- /Code Download/Chapter 10/Code/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 10/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 11/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 11/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 11/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 11/Code/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 11/Code/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 11/Code/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 11/Code/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 |

| 5 | CATALOG ADMIN | 6 | PRODUCTS ATTRIBUTES ADMIN | 7 | STOREFRONT | 8 | LOGOUT | 9 |

10 | -------------------------------------------------------------------------------- /Code Download/Chapter 11/Code/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 11/Code/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {if $obj->mShowEditButton} 6 |
7 | 9 |
10 | {/if} 11 | {include file="products_list.tpl"} 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 11/Code/presentation/templates/first_page_contents.tpl: -------------------------------------------------------------------------------- 1 | {* first_page_contents.tpl *} 2 | {load_presentation_object filename="first_page_contents" assign="obj"} 3 |

4 | We hope you have fun developing TShirtShop, the e-commerce store from 5 | Beginning PHP and MySQL E-Commerce: From Novice to Professional! 6 |

7 |

8 | We have the largest collection of t-shirts with postal stamps on Earth! 9 | Browse our departments and cateogories to find your favorite! 10 |

11 |

Access the admin page.

12 | {include file="products_list.tpl"} 13 | -------------------------------------------------------------------------------- /Code Download/Chapter 11/Code/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 11/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 12/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 12/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 12/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 12/Code/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 12/Code/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 12/Code/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 12/Code/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 |

| 5 | CATALOG ADMIN | 6 | PRODUCTS ATTRIBUTES ADMIN | 7 | CARTS ADMIN | 8 | STOREFRONT | 9 | LOGOUT | 10 |

11 | -------------------------------------------------------------------------------- /Code Download/Chapter 12/Code/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 12/Code/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {if $obj->mShowEditButton} 6 |
7 | 9 |
10 | {/if} 11 | {include file="products_list.tpl"} 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 12/Code/presentation/templates/first_page_contents.tpl: -------------------------------------------------------------------------------- 1 | {* first_page_contents.tpl *} 2 | {load_presentation_object filename="first_page_contents" assign="obj"} 3 |

4 | We hope you have fun developing TShirtShop, the e-commerce store from 5 | Beginning PHP and MySQL E-Commerce: From Novice to Professional! 6 |

7 |

8 | We have the largest collection of t-shirts with postal stamps on Earth! 9 | Browse our departments and cateogories to find your favorite! 10 |

11 |

Access the admin page.

12 | {include file="products_list.tpl"} 13 | -------------------------------------------------------------------------------- /Code Download/Chapter 12/Code/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 12/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 13/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 13/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 13/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 13/Code/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 13/Code/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 13/Code/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 13/Code/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 |

| 5 | CATALOG ADMIN | 6 | PRODUCTS ATTRIBUTES ADMIN | 7 | CARTS ADMIN | 8 | STOREFRONT | 9 | LOGOUT | 10 |

11 | -------------------------------------------------------------------------------- /Code Download/Chapter 13/Code/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 13/Code/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {if $obj->mShowEditButton} 6 |
7 | 9 |
10 | {/if} 11 | {include file="products_list.tpl"} 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 13/Code/presentation/templates/first_page_contents.tpl: -------------------------------------------------------------------------------- 1 | {* first_page_contents.tpl *} 2 | {load_presentation_object filename="first_page_contents" assign="obj"} 3 |

4 | We hope you have fun developing TShirtShop, the e-commerce store from 5 | Beginning PHP and MySQL E-Commerce: From Novice to Professional! 6 |

7 |

8 | We have the largest collection of t-shirts with postal stamps on Earth! 9 | Browse our departments and cateogories to find your favorite! 10 |

11 |

Access the admin page.

12 | {include file="products_list.tpl"} 13 | -------------------------------------------------------------------------------- /Code Download/Chapter 13/Code/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 13/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 14/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 14/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 14/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 14/Code/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 14/Code/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 14/Code/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 14/Code/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 | 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 14/Code/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 14/Code/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {if $obj->mShowEditButton} 6 |
7 | 9 |
10 | {/if} 11 | {include file="products_list.tpl"} 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 14/Code/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 14/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 15/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 15/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 15/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 15/Code/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 15/Code/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 15/Code/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 15/Code/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 | 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 15/Code/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 15/Code/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {if $obj->mShowEditButton} 6 |
7 | 9 |
10 | {/if} 11 | {include file="products_list.tpl"} 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 15/Code/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 15/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 16/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 16/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 16/Code/business/password_hasher.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /Code Download/Chapter 16/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 16/Code/presentation/customer_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 16/Code/presentation/customer_details.php -------------------------------------------------------------------------------- /Code Download/Chapter 16/Code/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 16/Code/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 16/Code/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 16/Code/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 | 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 16/Code/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 16/Code/presentation/templates/checkout_not_logged.tpl: -------------------------------------------------------------------------------- 1 | {* checkout_not_logged.tpl *} 2 |

3 | You must be logged in to CHECKOUT
4 | If you don't have an account please register
5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 16/Code/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {if $obj->mShowEditButton} 6 |
7 | 9 |
10 | {/if} 11 | {include file="products_list.tpl"} 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 16/Code/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 16/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 17/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 17/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 17/Code/business/password_hasher.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /Code Download/Chapter 17/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 17/Code/presentation/customer_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 17/Code/presentation/customer_details.php -------------------------------------------------------------------------------- /Code Download/Chapter 17/Code/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 17/Code/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 17/Code/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 17/Code/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 | 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 17/Code/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 17/Code/presentation/templates/checkout_not_logged.tpl: -------------------------------------------------------------------------------- 1 | {* checkout_not_logged.tpl *} 2 |

3 | You must be logged in to CHECKOUT
4 | If you don't have an account please register
5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 17/Code/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {if $obj->mShowEditButton} 6 |
7 | 9 |
10 | {/if} 11 | {include file="products_list.tpl"} 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 17/Code/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 17/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 18/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 18/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 18/Code/business/i_pipeline_section.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Code Download/Chapter 18/Code/business/password_hasher.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /Code Download/Chapter 18/Code/business/ps_dummy.php: -------------------------------------------------------------------------------- 1 | CreateAudit('PsDoNothing started.', 99999); 7 | 8 | $processor->CreateAudit('Customer: ' . 9 | $processor->mCustomerInfo['name'], 99999); 10 | 11 | $processor->CreateAudit('Order subtotal: ' . 12 | $processor->mOrderInfo['total_amount'], 99999); 13 | 14 | $processor->MailAdmin('Test.', 'Test mail from PsDummy.', 99999); 15 | 16 | $processor->CreateAudit('PsDoNothing finished', 99999); 17 | } 18 | } 19 | ?> 20 | -------------------------------------------------------------------------------- /Code Download/Chapter 18/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 18/Code/presentation/customer_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 18/Code/presentation/customer_details.php -------------------------------------------------------------------------------- /Code Download/Chapter 18/Code/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 18/Code/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 18/Code/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 18/Code/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 | 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 18/Code/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 18/Code/presentation/templates/checkout_not_logged.tpl: -------------------------------------------------------------------------------- 1 | {* checkout_not_logged.tpl *} 2 |

3 | You must be logged in to CHECKOUT
4 | If you don't have an account please register
5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 18/Code/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {if $obj->mShowEditButton} 6 |
7 | 9 |
10 | {/if} 11 | {include file="products_list.tpl"} 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 18/Code/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 18/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 19/Code/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/business/i_pipeline_section.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/business/password_hasher.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/business/ps_dummy.php: -------------------------------------------------------------------------------- 1 | CreateAudit('PsDoNothing started.', 99999); 7 | 8 | $processor->CreateAudit('Customer: ' . 9 | $processor->mCustomerInfo['name'], 99999); 10 | 11 | $processor->CreateAudit('Order subtotal: ' . 12 | $processor->mOrderInfo['total_amount'], 99999); 13 | 14 | $processor->MailAdmin('Test.', 'Test mail from PsDummy.', 99999); 15 | 16 | $processor->CreateAudit('PsDoNothing finished', 99999); 17 | } 18 | } 19 | ?> 20 | -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/presentation/customer_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 19/Code/presentation/customer_details.php -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 19/Code/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 | 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/presentation/templates/checkout_not_logged.tpl: -------------------------------------------------------------------------------- 1 | {* checkout_not_logged.tpl *} 2 |

3 | You must be logged in to CHECKOUT
4 | If you don't have an account please register
5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {if $obj->mShowEditButton} 6 |
7 | 9 |
10 | {/if} 11 | {include file="products_list.tpl"} 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/presentation/templates/order_done.tpl: -------------------------------------------------------------------------------- 1 | {* order_done.tpl *} 2 |

Thank you for your order!

3 |

4 | A confirmation of your order will be sent to your registered email address. 5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/presentation/templates/order_error.tpl: -------------------------------------------------------------------------------- 1 | {* order_error.tpl *} 2 |

An error has occurred during the processing of your order.

3 |

4 | If you have an inquiry regarding this message please email 5 | 6 | {$smarty.const.CUSTOMER_SERVICE_EMAIL} 7 |

8 | -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 19/Code/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 20/Code/authorize.net/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/business/i_pipeline_section.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/business/password_hasher.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/business/ps_dummy.php: -------------------------------------------------------------------------------- 1 | CreateAudit('PsDoNothing started.', 99999); 7 | 8 | $processor->CreateAudit('Customer: ' . 9 | $processor->mCustomerInfo['name'], 99999); 10 | 11 | $processor->CreateAudit('Order subtotal: ' . 12 | $processor->mOrderInfo['total_amount'], 99999); 13 | 14 | $processor->MailAdmin('Test.', 'Test mail from PsDummy.', 99999); 15 | 16 | $processor->CreateAudit('PsDoNothing finished', 99999); 17 | } 18 | } 19 | ?> 20 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/presentation/customer_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 20/Code/authorize.net/presentation/customer_details.php -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 20/Code/authorize.net/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 | 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/presentation/templates/checkout_not_logged.tpl: -------------------------------------------------------------------------------- 1 | {* checkout_not_logged.tpl *} 2 |

3 | You must be logged in to CHECKOUT
4 | If you don't have an account please register
5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {if $obj->mShowEditButton} 6 |
7 | 9 |
10 | {/if} 11 | {include file="products_list.tpl"} 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/presentation/templates/order_done.tpl: -------------------------------------------------------------------------------- 1 | {* order_done.tpl *} 2 |

Thank you for your order!

3 |

4 | A confirmation of your order will be sent to your registered email address. 5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/presentation/templates/order_error.tpl: -------------------------------------------------------------------------------- 1 | {* order_error.tpl *} 2 |

An error has occurred during the processing of your order.

3 |

4 | If you have an inquiry regarding this message please email 5 | 6 | {$smarty.const.CUSTOMER_SERVICE_EMAIL} 7 |

8 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/authorize.net/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 20/Code/datacash/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/business/i_pipeline_section.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/business/password_hasher.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/business/ps_dummy.php: -------------------------------------------------------------------------------- 1 | CreateAudit('PsDoNothing started.', 99999); 7 | 8 | $processor->CreateAudit('Customer: ' . 9 | $processor->mCustomerInfo['name'], 99999); 10 | 11 | $processor->CreateAudit('Order subtotal: ' . 12 | $processor->mOrderInfo['total_amount'], 99999); 13 | 14 | $processor->MailAdmin('Test.', 'Test mail from PsDummy.', 99999); 15 | 16 | $processor->CreateAudit('PsDoNothing finished', 99999); 17 | } 18 | } 19 | ?> 20 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/presentation/customer_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 20/Code/datacash/presentation/customer_details.php -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 20/Code/datacash/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 | 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/presentation/templates/checkout_not_logged.tpl: -------------------------------------------------------------------------------- 1 | {* checkout_not_logged.tpl *} 2 |

3 | You must be logged in to CHECKOUT
4 | If you don't have an account please register
5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {if $obj->mShowEditButton} 6 |
7 | 9 |
10 | {/if} 11 | {include file="products_list.tpl"} 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/presentation/templates/order_done.tpl: -------------------------------------------------------------------------------- 1 | {* order_done.tpl *} 2 |

Thank you for your order!

3 |

4 | A confirmation of your order will be sent to your registered email address. 5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/presentation/templates/order_error.tpl: -------------------------------------------------------------------------------- 1 | {* order_error.tpl *} 2 |

An error has occurred during the processing of your order.

3 |

4 | If you have an inquiry regarding this message please email 5 | 6 | {$smarty.const.CUSTOMER_SERVICE_EMAIL} 7 |

8 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 20/Code/datacash/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 21/Code/authorize.net/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/business/i_pipeline_section.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/business/password_hasher.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/business/ps_dummy.php: -------------------------------------------------------------------------------- 1 | CreateAudit('PsDoNothing started.', 99999); 7 | 8 | $processor->CreateAudit('Customer: ' . 9 | $processor->mCustomerInfo['name'], 99999); 10 | 11 | $processor->CreateAudit('Order subtotal: ' . 12 | $processor->mOrderInfo['total_amount'], 99999); 13 | 14 | $processor->MailAdmin('Test.', 'Test mail from PsDummy.', 99999); 15 | 16 | $processor->CreateAudit('PsDoNothing finished', 99999); 17 | } 18 | } 19 | ?> 20 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/presentation/customer_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 21/Code/authorize.net/presentation/customer_details.php -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 21/Code/authorize.net/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 | 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/presentation/templates/checkout_not_logged.tpl: -------------------------------------------------------------------------------- 1 | {* checkout_not_logged.tpl *} 2 |

3 | You must be logged in to CHECKOUT
4 | If you don't have an account please register
5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {if $obj->mShowEditButton} 6 |
7 | 9 |
10 | {/if} 11 | {include file="products_list.tpl"} 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/presentation/templates/order_done.tpl: -------------------------------------------------------------------------------- 1 | {* order_done.tpl *} 2 |

Thank you for your order!

3 |

4 | A confirmation of your order will be sent to your registered email address. 5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/presentation/templates/order_error.tpl: -------------------------------------------------------------------------------- 1 | {* order_error.tpl *} 2 |

An error has occurred during the processing of your order.

3 |

4 | If you have an inquiry regarding this message please email 5 | 6 | {$smarty.const.CUSTOMER_SERVICE_EMAIL} 7 |

8 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/authorize.net/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 21/Code/datacash/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/business/i_pipeline_section.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/business/password_hasher.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/business/ps_dummy.php: -------------------------------------------------------------------------------- 1 | CreateAudit('PsDoNothing started.', 99999); 7 | 8 | $processor->CreateAudit('Customer: ' . 9 | $processor->mCustomerInfo['name'], 99999); 10 | 11 | $processor->CreateAudit('Order subtotal: ' . 12 | $processor->mOrderInfo['total_amount'], 99999); 13 | 14 | $processor->MailAdmin('Test.', 'Test mail from PsDummy.', 99999); 15 | 16 | $processor->CreateAudit('PsDoNothing finished', 99999); 17 | } 18 | } 19 | ?> 20 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/presentation/customer_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 21/Code/datacash/presentation/customer_details.php -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 21/Code/datacash/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 | 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/presentation/templates/checkout_not_logged.tpl: -------------------------------------------------------------------------------- 1 | {* checkout_not_logged.tpl *} 2 |

3 | You must be logged in to CHECKOUT
4 | If you don't have an account please register
5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {if $obj->mShowEditButton} 6 |
7 | 9 |
10 | {/if} 11 | {include file="products_list.tpl"} 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/presentation/templates/order_done.tpl: -------------------------------------------------------------------------------- 1 | {* order_done.tpl *} 2 |

Thank you for your order!

3 |

4 | A confirmation of your order will be sent to your registered email address. 5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/presentation/templates/order_error.tpl: -------------------------------------------------------------------------------- 1 | {* order_error.tpl *} 2 |

An error has occurred during the processing of your order.

3 |

4 | If you have an inquiry regarding this message please email 5 | 6 | {$smarty.const.CUSTOMER_SERVICE_EMAIL} 7 |

8 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 21/Code/datacash/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 22/Code/authorize.net/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/business/i_pipeline_section.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/business/password_hasher.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/business/ps_dummy.php: -------------------------------------------------------------------------------- 1 | CreateAudit('PsDoNothing started.', 99999); 7 | 8 | $processor->CreateAudit('Customer: ' . 9 | $processor->mCustomerInfo['name'], 99999); 10 | 11 | $processor->CreateAudit('Order subtotal: ' . 12 | $processor->mOrderInfo['total_amount'], 99999); 13 | 14 | $processor->MailAdmin('Test.', 'Test mail from PsDummy.', 99999); 15 | 16 | $processor->CreateAudit('PsDoNothing finished', 99999); 17 | } 18 | } 19 | ?> 20 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/presentation/customer_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 22/Code/authorize.net/presentation/customer_details.php -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 22/Code/authorize.net/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 | 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/presentation/templates/checkout_not_logged.tpl: -------------------------------------------------------------------------------- 1 | {* checkout_not_logged.tpl *} 2 |

3 | You must be logged in to CHECKOUT
4 | If you don't have an account please register
5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {if $obj->mShowEditButton} 6 |
7 | 9 |
10 | {/if} 11 | {include file="products_list.tpl"} 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/presentation/templates/order_done.tpl: -------------------------------------------------------------------------------- 1 | {* order_done.tpl *} 2 |

Thank you for your order!

3 |

4 | A confirmation of your order will be sent to your registered email address. 5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/presentation/templates/order_error.tpl: -------------------------------------------------------------------------------- 1 | {* order_error.tpl *} 2 |

An error has occurred during the processing of your order.

3 |

4 | If you have an inquiry regarding this message please email 5 | 6 | {$smarty.const.CUSTOMER_SERVICE_EMAIL} 7 |

8 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/authorize.net/test_rest.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/business/database_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 22/Code/datacash/business/database_handler.php -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/business/i_pipeline_section.php: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/business/password_hasher.php: -------------------------------------------------------------------------------- 1 | 15 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/business/ps_dummy.php: -------------------------------------------------------------------------------- 1 | CreateAudit('PsDoNothing started.', 99999); 7 | 8 | $processor->CreateAudit('Customer: ' . 9 | $processor->mCustomerInfo['name'], 99999); 10 | 11 | $processor->CreateAudit('Order subtotal: ' . 12 | $processor->mOrderInfo['total_amount'], 99999); 13 | 14 | $processor->MailAdmin('Test.', 'Test mail from PsDummy.', 99999); 15 | 16 | $processor->CreateAudit('PsDoNothing finished', 99999); 17 | } 18 | } 19 | ?> 20 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/include/configs/site.conf: -------------------------------------------------------------------------------- 1 | site_title = "TShirtShop: Demo Product Catalog from Beginning PHP and MySQL E-Commerce" 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/presentation/customer_details.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 22/Code/datacash/presentation/customer_details.php -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/presentation/first_page_contents.php: -------------------------------------------------------------------------------- 1 | mLinkToAdmin = Link::ToAdmin(); 9 | } 10 | } 11 | ?> 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/presentation/link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Chapter 22/Code/datacash/presentation/link.php -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/presentation/templates/admin_menu.tpl: -------------------------------------------------------------------------------- 1 | {* admin_menu.tpl *} 2 | {load_presentation_object filename="admin_menu" assign="obj"} 3 |

TShirtShop Admin

4 | 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/presentation/templates/blank.tpl: -------------------------------------------------------------------------------- 1 | {* Smarty blank page *} 2 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/presentation/templates/checkout_not_logged.tpl: -------------------------------------------------------------------------------- 1 | {* checkout_not_logged.tpl *} 2 |

3 | You must be logged in to CHECKOUT
4 | If you don't have an account please register
5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/presentation/templates/department.tpl: -------------------------------------------------------------------------------- 1 | {* department.tpl *} 2 | {load_presentation_object filename="department" assign="obj"} 3 |

{$obj->mName}

4 |

{$obj->mDescription}

5 | {if $obj->mShowEditButton} 6 |
7 | 9 |
10 | {/if} 11 | {include file="products_list.tpl"} 12 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/presentation/templates/order_done.tpl: -------------------------------------------------------------------------------- 1 | {* order_done.tpl *} 2 |

Thank you for your order!

3 |

4 | A confirmation of your order will be sent to your registered email address. 5 |

6 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/presentation/templates/order_error.tpl: -------------------------------------------------------------------------------- 1 | {* order_error.tpl *} 2 |

An error has occurred during the processing of your order.

3 |

4 | If you have an inquiry regarding this message please email 5 | 6 | {$smarty.const.CUSTOMER_SERVICE_EMAIL} 7 |

8 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/presentation/templates/search_results.tpl: -------------------------------------------------------------------------------- 1 | {* search_results.tpl *} 2 |

Search results

3 | {include file="products_list.tpl"} 4 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/styles/fonts-min.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2007, Yahoo! Inc. All rights reserved. 3 | Code licensed under the BSD License: 4 | http://developer.yahoo.net/yui/license.txt 5 | version: 2.3.1 6 | */ 7 | body {font:13px/1.22 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}table {font-size:inherit;font:100%;}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:99%;} 8 | -------------------------------------------------------------------------------- /Code Download/Chapter 22/Code/datacash/test_rest.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Code Download/Database Complete/complete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Database Complete/complete.sql -------------------------------------------------------------------------------- /Code Download/Images/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/images/Thumbs.db -------------------------------------------------------------------------------- /Code Download/Images/images/tshirtshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/images/tshirtshop.png -------------------------------------------------------------------------------- /Code Download/Images/product_images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/Thumbs.db -------------------------------------------------------------------------------- /Code Download/Images/product_images/a-partridge-in-a-pear-tree-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/a-partridge-in-a-pear-tree-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/a-partridge-in-a-pear-tree-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/a-partridge-in-a-pear-tree-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/a-partridge-in-a-pear-tree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/a-partridge-in-a-pear-tree.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/adoration-of-the-kings-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/adoration-of-the-kings-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/adoration-of-the-kings-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/adoration-of-the-kings-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/adoration-of-the-kings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/adoration-of-the-kings.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/afghan-flower-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/afghan-flower-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/afghan-flower-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/afghan-flower-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/afghan-flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/afghan-flower.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/albania-flower-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/albania-flower-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/albania-flower-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/albania-flower-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/albania-flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/albania-flower.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/alsace-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/alsace-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/alsace-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/alsace-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/alsace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/alsace.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/altar-piece-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/altar-piece-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/altar-piece-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/altar-piece-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/altar-piece.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/altar-piece.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/apocalypse-tapestry-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/apocalypse-tapestry-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/apocalypse-tapestry-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/apocalypse-tapestry-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/apocalypse-tapestry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/apocalypse-tapestry.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/arc-d-triomphe-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/arc-d-triomphe-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/arc-d-triomphe-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/arc-d-triomphe-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/arc-d-triomphe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/arc-d-triomphe.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/austria-flower-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/austria-flower-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/austria-flower-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/austria-flower-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/austria-flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/austria-flower.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/baby-seal-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/baby-seal-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/baby-seal-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/baby-seal-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/baby-seal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/baby-seal.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/birds-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/birds-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/birds-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/birds-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/birds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/birds.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/buffalo-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/buffalo-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/buffalo-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/buffalo-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/buffalo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/buffalo.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/bulgarian-flower-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/bulgarian-flower-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/bulgarian-flower-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/bulgarian-flower-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/bulgarian-flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/bulgarian-flower.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/canada-goose-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/canada-goose-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/canada-goose-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/canada-goose-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/canada-goose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/canada-goose.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/caribou-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/caribou-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/caribou-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/caribou-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/caribou.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/caribou.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/centaur-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/centaur-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/centaur-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/centaur-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/centaur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/centaur.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/chartres-cathedral-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/chartres-cathedral-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/chartres-cathedral-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/chartres-cathedral-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/chartres-cathedral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/chartres-cathedral.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/christmas-seal-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/christmas-seal-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/christmas-seal-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/christmas-seal-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/christmas-seal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/christmas-seal.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/christmas-tree-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/christmas-tree-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/christmas-tree-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/christmas-tree-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/christmas-tree.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/christmas-tree.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/coat-of-arms-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/coat-of-arms-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/coat-of-arms-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/coat-of-arms-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/coat-of-arms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/coat-of-arms.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/colobus-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/colobus-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/colobus-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/colobus-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/colobus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/colobus.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/colombia-flower-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/colombia-flower-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/colombia-flower-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/colombia-flower-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/colombia-flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/colombia-flower.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/congo-flower-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/congo-flower-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/congo-flower-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/congo-flower-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/congo-flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/congo-flower.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/congo-rhino-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/congo-rhino-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/congo-rhino-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/congo-rhino-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/congo-rhino.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/congo-rhino.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/corsica-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/corsica-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/corsica-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/corsica-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/corsica.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/corsica.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/costa-rica-flower-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/costa-rica-flower-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/costa-rica-flower-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/costa-rica-flower-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/costa-rica-flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/costa-rica-flower.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/county-of-nice-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/county-of-nice-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/county-of-nice-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/county-of-nice-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/county-of-nice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/county-of-nice.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/dutch-sea-horse-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/dutch-sea-horse-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/dutch-sea-horse-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/dutch-sea-horse-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/dutch-sea-horse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/dutch-sea-horse.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/dutch-swans-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/dutch-swans-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/dutch-swans-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/dutch-swans-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/dutch-swans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/dutch-swans.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/easter-rebellion-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/easter-rebellion-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/easter-rebellion-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/easter-rebellion-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/easter-rebellion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/easter-rebellion.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/equatorial-rhino-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/equatorial-rhino-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/equatorial-rhino-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/equatorial-rhino-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/equatorial-rhino.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/equatorial-rhino.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/espresso-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/espresso-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/espresso-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/espresso-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/espresso.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/espresso.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/ethiopian-elephant-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/ethiopian-elephant-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/ethiopian-elephant-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/ethiopian-elephant-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/ethiopian-elephant.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/ethiopian-elephant.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/ethiopian-rhino-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/ethiopian-rhino-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/ethiopian-rhino-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/ethiopian-rhino-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/ethiopian-rhino.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/ethiopian-rhino.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/gabon-flower-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/gabon-flower-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/gabon-flower-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/gabon-flower-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/gabon-flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/gabon-flower.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/galileo-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/galileo-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/galileo-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/galileo-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/galileo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/galileo.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/gallic-cock-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/gallic-cock-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/gallic-cock-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/gallic-cock-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/gallic-cock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/gallic-cock.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/ghana-flower-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/ghana-flower-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/ghana-flower-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/ghana-flower-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/ghana-flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/ghana-flower.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/guiness-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/guiness-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/guiness-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/guiness-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/guiness.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/guiness.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/haute-couture-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/haute-couture-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/haute-couture-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/haute-couture-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/haute-couture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/haute-couture.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/holly-cat-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/holly-cat-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/holly-cat-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/holly-cat-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/holly-cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/holly-cat.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/hunt-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/hunt-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/hunt-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/hunt-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/hunt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/hunt.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/ifni-fish-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/ifni-fish-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/ifni-fish-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/ifni-fish-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/ifni-fish.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/ifni-fish.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/iris-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/iris-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/iris-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/iris-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/iris.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/iris.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/irish-coat-of-arms-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/irish-coat-of-arms-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/irish-coat-of-arms-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/irish-coat-of-arms-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/irish-coat-of-arms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/irish-coat-of-arms.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/israel-flower-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/israel-flower-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/israel-flower-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/israel-flower-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/israel-flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/israel-flower.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/italia-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/italia-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/italia-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/italia-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/italia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/italia.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/italian-airmail-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/italian-airmail-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/italian-airmail-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/italian-airmail-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/italian-airmail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/italian-airmail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/italy-jesus-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/italy-jesus-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/italy-jesus-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/italy-jesus-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/italy-jesus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/italy-jesus.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/italy-maria-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/italy-maria-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/italy-maria-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/italy-maria-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/italy-maria.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/italy-maria.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/kat-over-new-moon-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/kat-over-new-moon-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/kat-over-new-moon-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/kat-over-new-moon-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/kat-over-new-moon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/kat-over-new-moon.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/king-salmon-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/king-salmon-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/king-salmon-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/king-salmon-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/king-salmon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/king-salmon.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/laos-bird-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/laos-bird-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/laos-bird-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/laos-bird-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/laos-bird.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/laos-bird.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/laotian-elephant-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/laotian-elephant-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/laotian-elephant-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/laotian-elephant-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/laotian-elephant.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/laotian-elephant.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/liberian-elephant-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/liberian-elephant-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/liberian-elephant-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/liberian-elephant-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/liberian-elephant.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/liberian-elephant.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/lorraine-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/lorraine-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/lorraine-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/lorraine-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/lorraine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/lorraine.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/love-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/love-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/love-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/love-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/love.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/love.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/madonna-child-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/madonna-child-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/madonna-child-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/madonna-child-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/madonna-child.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/madonna-child.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/marianne-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/marianne-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/marianne-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/marianne-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/marianne.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/marianne.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/mazzini-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/mazzini-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/mazzini-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/mazzini-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/mazzini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/mazzini.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/mercury-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/mercury-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/mercury-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/mercury-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/mercury.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/mercury.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/mistletoe-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/mistletoe-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/mistletoe-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/mistletoe-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/mistletoe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/mistletoe.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/mozambique-lion-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/mozambique-lion-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/mozambique-lion-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/mozambique-lion-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/mozambique-lion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/mozambique-lion.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/musk-ox-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/musk-ox-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/musk-ox-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/musk-ox-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/musk-ox.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/musk-ox.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/mustache-monkey-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/mustache-monkey-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/mustache-monkey-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/mustache-monkey-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/mustache-monkey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/mustache-monkey.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/notre-dame-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/notre-dame-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/notre-dame-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/notre-dame-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/notre-dame.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/notre-dame.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/paris-peace-conference-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/paris-peace-conference-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/paris-peace-conference-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/paris-peace-conference-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/paris-peace-conference.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/paris-peace-conference.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/peru-llama-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/peru-llama-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/peru-llama-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/peru-llama-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/peru-llama.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/peru-llama.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/poland-flower-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/poland-flower-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/poland-flower-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/poland-flower-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/poland-flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/poland-flower.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/romania-alsatian-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/romania-alsatian-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/romania-alsatian-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/romania-alsatian-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/romania-alsatian.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/romania-alsatian.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/romania-flower-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/romania-flower-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/romania-flower-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/romania-flower-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/romania-flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/romania-flower.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/romulus-remus-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/romulus-remus-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/romulus-remus-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/romulus-remus-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/romulus-remus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/romulus-remus.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/russia-flower-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/russia-flower-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/russia-flower-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/russia-flower-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/russia-flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/russia-flower.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/sambar-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/sambar-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/sambar-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/sambar-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/sambar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/sambar.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/san-marino-flower-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/san-marino-flower-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/san-marino-flower-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/san-marino-flower-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/san-marino-flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/san-marino-flower.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/sarah-bernhardt-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/sarah-bernhardt-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/sarah-bernhardt-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/sarah-bernhardt-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/sarah-bernhardt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/sarah-bernhardt.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/sea-gull-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/sea-gull-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/sea-gull-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/sea-gull-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/sea-gull.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/sea-gull.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/snow-deer-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/snow-deer-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/snow-deer-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/snow-deer-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/snow-deer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/snow-deer.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/somali-fish-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/somali-fish-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/somali-fish-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/somali-fish-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/somali-fish.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/somali-fish.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/somali-ostriches-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/somali-ostriches-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/somali-ostriches-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/somali-ostriches-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/somali-ostriches.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/somali-ostriches.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/st-francis-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/st-francis-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/st-francis-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/st-francis-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/st-francis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/st-francis.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/st-lucia-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/st-lucia-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/st-lucia-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/st-lucia-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/st-lucia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/st-lucia.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/st-lucy-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/st-lucy-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/st-lucy-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/st-lucy-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/st-lucy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/st-lucy.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/st-patrick-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/st-patrick-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/st-patrick-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/st-patrick-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/st-patrick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/st-patrick.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/st-peter-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/st-peter-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/st-peter-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/st-peter-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/st-peter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/st-peter.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/suvla-bay-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/suvla-bay-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/suvla-bay-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/suvla-bay-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/suvla-bay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/suvla-bay.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/swede-santa-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/swede-santa-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/swede-santa-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/swede-santa-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/swede-santa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/swede-santa.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/sword-of-light-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/sword-of-light-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/sword-of-light-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/sword-of-light-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/sword-of-light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/sword-of-light.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/tankanyika-giraffe-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/tankanyika-giraffe-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/tankanyika-giraffe-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/tankanyika-giraffe-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/tankanyika-giraffe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/tankanyika-giraffe.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/the-promise-of-spring-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/the-promise-of-spring-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/the-promise-of-spring-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/the-promise-of-spring-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/the-promise-of-spring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/the-promise-of-spring.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/the-rapture-of-psyche-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/the-rapture-of-psyche-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/the-rapture-of-psyche-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/the-rapture-of-psyche-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/the-rapture-of-psyche.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/the-rapture-of-psyche.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/the-three-wise-men-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/the-three-wise-men-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/the-three-wise-men-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/the-three-wise-men-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/the-three-wise-men.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/the-three-wise-men.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/the-virgin-mary-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/the-virgin-mary-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/the-virgin-mary-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/the-virgin-mary-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/the-virgin-mary.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/the-virgin-mary.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/thomas-moore-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/thomas-moore-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/thomas-moore-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/thomas-moore-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/thomas-moore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/thomas-moore.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/thrilling-love-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/thrilling-love-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/thrilling-love-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/thrilling-love-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/thrilling-love.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/thrilling-love.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/torch-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/torch-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/torch-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/torch-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/torch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/torch.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/trout-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/trout-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/trout-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/trout-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/trout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/trout.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/uruguay-flower-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/uruguay-flower-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/uruguay-flower-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/uruguay-flower-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/uruguay-flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/uruguay-flower.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/visit-the-zoo-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/visit-the-zoo-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/visit-the-zoo-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/visit-the-zoo-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/visit-the-zoo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/visit-the-zoo.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/weather-vane-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/weather-vane-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/weather-vane-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/weather-vane-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/weather-vane.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/weather-vane.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/wreath-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/wreath-2.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/wreath-thumbnail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/wreath-thumbnail.gif -------------------------------------------------------------------------------- /Code Download/Images/product_images/wreath.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/Code Download/Images/product_images/wreath.gif -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/beg-php-mysql-e-commerce/03cbf84dfaea4d65e2aafc48c78d83598492a650/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Apress Source Code 2 | 3 | This repository accompanies [*Beginning PHP and MySQL E-Commerce*](http://www.apress.com/9781590598641) by Cristian Darie and Emilian Balanescu (Apress, 2008). 4 | 5 | ![Cover image](9781590598641.jpg) 6 | 7 | Download the files as a zip using the green button, or clone the repository to your machine using Git. 8 | 9 | ## Releases 10 | 11 | Release v1.0 corresponds to the code in the published book, without corrections or updates. 12 | 13 | ## Contributions 14 | 15 | See the file Contributing.md for more information on how you can contribute to this repository. 16 | --------------------------------------------------------------------------------