I am looking for a good tutorial or something.
Online Shop
Moderator: General Moderators
Online Shop
Hey guys a friend of mine owns a fast food restaurant and he asked me if we can make a web page php-based where his customers can order online
.
I am looking for a good tutorial or something.
I am looking for a good tutorial or something.
- aceconcepts
- DevNet Resident
- Posts: 1424
- Joined: Mon Feb 06, 2006 11:26 am
- Location: London
Re: Online Shop
I dont know of any tutorials, try using a search engine.
However, if you were to code the shop from scratch you would need the following tables:
1. product table (dishes)
product_id
product_name
product_description
product_price
2. shopping cart
product_id
session_id
qty
3. delivery table
delivery_id
delivery_title
delivery_description
4. order table
order_id
date
time
session_id
delivery_id
order_total
5. order details table
order_id
product_id
qty
order_total_ea
So that should just about do it for your shop.
If you need anymore help let me know.
However, if you were to code the shop from scratch you would need the following tables:
1. product table (dishes)
product_id
product_name
product_description
product_price
2. shopping cart
product_id
session_id
qty
3. delivery table
delivery_id
delivery_title
delivery_description
4. order table
order_id
date
time
session_id
delivery_id
order_total
5. order details table
order_id
product_id
qty
order_total_ea
So that should just about do it for your shop.
If you need anymore help let me know.
-
fiorefrank
- Forum Newbie
- Posts: 3
- Joined: Thu Apr 03, 2008 4:53 am
Re: Online Shop
hi,lepass_7 wrote:Hey guys a friend of mine owns a fast food restaurant and he asked me if we can make a web page php-based where his customers can order online.
I am looking for a good tutorial or something.
just order or pay too?