I'm trying to find a way to use this data for other means.. i.e standard mysql queries.
For example, If I'm collecting data normally into a table then I am able to do something like this
Table:
id - submitted by user id - my order - my side dish
1 - 54 - Hamburger - Fries
2 - 34 - Pizza - Spaghetti
3 - 54 - Soup - Potatoes
Then I could do simple commands like show all entries from user 54..
I have a lot of data I'll be collecting, and need to use it on other pages where it will be showing the data from many entries (not just one entry on a page or post). I also need to be able able to use the data to compare it to other tables. Can this type of thing be done or am I better of hard coding my forms? I've tried to search for hooks and things to do it, with no luck
Thanks!