Help for this page

Select Code to Download


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