I have a dynamically generated form whose <input> names depend on a unique id number (taken from a database). Ordinarily, on the form's receiving page I just write $blah_de_blah = $_POST['blah_de_blah'], but now I no longer know WHICH names will be coming through. So how would I properly initialize the variables?
Am I being clear? No. Let me try again.
My form has a bunch of checkboxes, and I want to find out WHICH ones have been checked. The problem is, each checkbox's input tag has a dynamically created name, so I don't know what are the names leaving the page when the user clicks "Submit". How do I then correctly initialize these variables on the recipient page?
Thanks -