How can i collect the names and values from a form thru a for(x=0,x<ammount of form elements, x++){ loop.
I would like to append an INSERT query.
Thanks
foreach($_POST as $formname=>$formvalue) {....loops through each form element in turn }
If you're using an older version of PHP:
foreach($HTTP_POST_VARS as $formname=>$formvalue) {.... }
And the obvious change if you're using GET instead of POST.