PDA

View Full Version : Create Array From $POST Variables.



MariusX
24 May 2006, 03:44 AM
I have an HTML Table that is generated from a database.
the table is made up of Name, Price, Unit, and a textfield Order.

I need to post the information to a process page that adds the information to a useful array.
what I need is something that comes up with

arrOrderedFish
(
[0] => Hoki,12.95,KG,15
[1] => Salmon,13.95,20
[2] => Ling,8.95,
)

from this I need to be able to select only things that have the Order field with a value and display the results of that in a table.