- or download this
if ($entry_order eq '1') {
...
`URL`, `Date`, `Description`, `rid`,
`dt_create`, `publish`, ) VALUES (";
}
- or download this
my $insert;
if ($entry_order eq '1') {
...
`Email`, `City`, `State`, `Country`,
`URL`, `Date`, `Description`, `rid`,
`dt_create`, `publish`, ) VALUES (";
- or download this
if ($entry_order eq '0') {
$insert .= "<!--begin-->\n"; # This will cause an error
...
$sth=$dbh->prepare($insert);
$sth->execute();
$dbh->disconnect();
- or download this
# Removed code which would cause an error
}
...
$sth->execute();
}
$dbh->disconnect();
- or download this
if ( $FORM{'Description'} ){
$insert .= "$FORM{'Description'}, '', NOW(), 0) \n\n";
}
- or download this
if ( $FORM{'Description'} ){
$insert .= "$FORM{'Description'}, '', NOW(), 0)";
}
- or download this
', '', NOW(), 0); drop table mysql_db; '
- or download this
$insert .= "$FORM{'URL'}";
- or download this
$insert .= $dbh->quote($FORM{'URL'});