| 
 Posted by Madflojo on 10/08/05 21:12 
What do you mean as far as "getting it out of the form" do you mean 
retriving the post data on the next page? 
 
If so what you do on the next page is  
 
$variable = $_POST[nameoffield]; 
 
However the way your making the form is a little strange because your 
dynamically setting the field names it makes it harder to use the 
above example.  
 
But to answer your question any post information is sent to the 
$_POST[] array so if you can figure out the names you can just define 
it like above.
 
  
Navigation:
[Reply to this message] 
 |