Jump to content

[SOLVED] A quick way to do this... loop $_POST


Perad

Recommended Posts

ok I have 20 forms each with 20+ inputs. After writing an SQL function for 1 I have realised that I would rather chop of my balls than do the rest of them manually. Is it possible to loop through $_POST so it will do something like this this...

 

In this case $_POST would be 'mwireless'...

 

 

$mwireless = $this->cleanString($_POST['mwireless']);

$sql = "INSERT INTO dbname (mwireless, ... ) VALUES ('$mwireless',..)";

 

Please tell me this can be done.

Link to comment
https://forums.phpfreaks.com/topic/66144-solved-a-quick-way-to-do-this-loop-_post/
Share on other sites

what about this

 

foreach($_POST as $K => $V)
{
//may want to clean $K as well
$Clean[$K] = $this->cleanString($V);
}

$fields = implode(",",array_keys($Clean));
$Values = implode("','",$Clean);

$sql = "INSERT INTO dbname ($fields) VALUES ('$Values')";

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.