Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Order Form

Status
Not open for further replies.

PCBrandon

IS-IT--Management
Jan 6, 2007
17
0
0
Hello,

I have an order form with ten rows of five fields in a form (so 50 fields). Is there any other way to efficiently enter the data from these fields into a database without having to individually go through each field manually?

Thanks!
 
So basically with the above class you'd simply go:


---addOrder.asp---

order = new ySQL

Order.Table("Order_Table")

newID = Order.Add() 'This action goes through your POST and GET variables automatically and matches them up with the table, no need to go thru one by one.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top