As SleepyCod said, your breast bet is operating a foreach, but the answer needs to be expanded upon:
- Are the form fields equivalent to the table?
- Is each form being used to
UPDATE or INSERT into more than table?
The reason I ask is because this is something that I've done for my webpage. I created a dynamic form structure where the table is queried in question, the schema is retrieved and a foreach + switch() is used to determine WHAT the field is to be used.
But that's not what you're asking.
So, instead, I give you:
// Assuming one table:one form, and each input-name = column name.
//strip array $_POST into its key and value.
foreach($_POST as $key => $val) {
$vals .= "'$val', ";
$keys .= "`$key`, ";
}
// Lest we want to generate errors, shave off the trailing comma and whitespace.
$keys_strip = substr($keys, 0, -2);
$vals_strip = substr($vals, 0, -2);
$sql = mysql_query("INSERT INTO t1 ($keys_strip) VALUES ($vals_strip)");
For multiple tables, it got a bit trickier. I'd opt for using a quick identify at the beginning of each form, so we can do the following:
// Assuming two+ table:one form, for each input, name='t1:column_name'; assume tables are defined in an array per form for easy reference.
//strip array $_POST into key and value, then separate the key into two separate fields. This will ONLY work for t1:column-name set up; an if statement can be put in to deal with the remaining information.
foreach ($_POST as $key as val) {
// This will result in keys_t1 = key and vals_t1 = val.
if (preg_match('/^(\w.+):(\w.+)$/', $key, $t_key)) {
${"keys_".$t_key[1]} = "$t_key[2], ";
${"vals_".$t_key[1]} = "$var, ";
}
}
// Assume $tables array, containing tables for THIS insert.
foreach ($tables AS $table) {
$keys_strip = substr(${"keys_".$table}, 0, -2);
$vals_strip = substr(${"vals_".$table}, 0, -2);
$sql = mysql_query("INSERT INTO table ($keys_strip) VALUES ($vals_strip)");
}
Some tooling might be required to get this to work right, but it should get you to where you need to go. Mind the fact that this will only INSERT form-based information. If there's anything you need... well... I strongly recommend using a hidden input type.