Hey guys... Needed some help in PHP ..
Basically.. say.. I have 2 or more input fields and one text area.
Now, I want some sort of a php script that would use POST to extract submitted data from the inputfield1, inputfield2, and text-area.
The textarea is going to have numbers in each line .. say like..
123
133
124 .. etc
... Next.. is it possible to extract the information submitted above (field1, field2, and textarea) and form them in some sort of output box as such
field1 textarea field2
So.. say .. output would be something like:
field1 = username
textarea = serial number
field2 = command
result would be
sam 123 accept
dave 133 accept
nick 124 deny
etc etc
Is it possible?
:)