THE CULTURED FREEZERS — PHP + MySQL shop
========================================

Upload this one folder. It is the full website: HTML, CSS, JavaScript, PHP (PDO) and MySQL.

SETUP
1. Unzip cultured-freezers-php.zip
2. Open cultured-freezers-php/config.php
3. Put your MySQL host, database name, username and password
4. Upload the cultured-freezers-php folder to public_html (or upload its contents into public_html)
5. PHP 8.0+ with the pdo_mysql extension
6. Open the site. The first visit creates the tables and loads 106 products from your POS list.

TABLES (created automatically)
  products   barcode, description, category, cost, selling, qty, total_value, profit, status
  orders
  order_items
  messages

Cost and profit stay in MySQL. They are never shown on the shop.

FOLDER (one copy of each file)
  config.php
  index.php, shop.php, product.php, cart.php, checkout.php, deals.php, search.php
  about.php, contact.php, delivery.php, wholesale.php, order.php
  api/order.php
  assets/css/styles.css
  assets/js/app.js
  assets/images/
  assets/logo.png
  includes/db.php
  includes/seed-data.php
  includes/functions.php
  includes/header.php
  includes/footer.php
