This topic is locked

Order form

3/6/2007 1:50:04 PM
PHPRunner General questions
buddy author

I'm fairly familiar with mysql/php and just getting used to PHPrunner and liking it a lot. Looking for some direction.
What I need to do is create a form where folks can order like this:
Customer

Contact

Address

CSZ etc.
Product Quantity Description
Select box Text Box Text Box
Select box Text Box Text Box
Select box Text Box Text Box
Select box Text Box Text Box
allowing to order multiple items from one page.
The solution is escaping me. I see how they can order one product and options from a page but how to order multiple items from one page.
Any help and direction is appreciated.

J
Jane 3/7/2007

Hi,
you can do it to modify generated ..._edit.php/..._add.php files manually.

Unfortunately we don't have a ready to go solution for this.

J
jim9 3/8/2007

Look at phprunner online demos where they use the northwind database example. Basically have an orders table and an orders_sub table. Master will be main order, and underneath in sub you can place as many as you want. Still one page per line item, but they will show up all on one page. This is a standard way to do an invoice.

I'm fairly familiar with mysql/php and just getting used to PHPrunner and liking it a lot. Looking for some direction.
What I need to do is create a form where folks can order like this:
Customer

Contact

Address

CSZ etc.
Product Quantity Description
Select box Text Box Text Box
Select box Text Box Text Box
Select box Text Box Text Box
Select box Text Box Text Box
allowing to order multiple items from one page.
The solution is escaping me. I see how they can order one product and options from a page but how to order multiple items from one page.
Any help and direction is appreciated.

buddy author 3/9/2007

Thanks all. This got me started.