Hey, I'm having trouble getting this query to go through and I don't know why it won't.
$field_array = array_keys($fields_form);
$fields=implode(",",$field_array);
$values=implode('","',$fields_form);
$query = 'INSERT INTO Table ($fields) VALUES (\"$values\")';
$result = mysql_query($query) or die ("Couldnt execute blasted query.");
Any help with this would be greatly appreciated, Thanks.