Quote:
Originally Posted by Revan
PHP Code:
foreach ($thrust as $sounds)
{
$DB_site->query("INSERT INTO woman (`item`) VALUES
('male_genitalia',
'dildo',
'other_toys',
'fingers')
");
echo $sounds;
}
|
MySQL Error.
Should be:
PHP Code:
foreach ($thrust as $sounds)
{
$DB_site->query("INSERT INTO woman (`item`) VALUES
('male_genitalia'),
('dildo'),
('other_toys'),
('fingers')
");
echo $sounds;
}