What I am trying to do is get all the information in the text area into
the database. But what happens with this script, is that for each $div,
a NEW entry gets put into the database. I want EVERYTHING in the text
area into ONE new entry in the database...
echo '<textarea name="style" cols="50" rows="5"
onClick="this.f ocus();this.sel ect()">';
foreach($match[0] as $div) {
$div = str_replace('\' ', '"', $div);
echo $div;
}
?>
<?php
echo "</textarea>";
$sql = mysql_query("IN SERT INTO `layoutsQ` ( `auto` , `site` , `cat` ,
`code` , `name` )
VALUES (
'', 'myspace', '$cat', '$div', '$name'
)",$piggyban k) or die("db error");
?>
the database. But what happens with this script, is that for each $div,
a NEW entry gets put into the database. I want EVERYTHING in the text
area into ONE new entry in the database...
echo '<textarea name="style" cols="50" rows="5"
onClick="this.f ocus();this.sel ect()">';
foreach($match[0] as $div) {
$div = str_replace('\' ', '"', $div);
echo $div;
}
?>
<?php
echo "</textarea>";
$sql = mysql_query("IN SERT INTO `layoutsQ` ( `auto` , `site` , `cat` ,
`code` , `name` )
VALUES (
'', 'myspace', '$cat', '$div', '$name'
)",$piggyban k) or die("db error");
?>
Comment