Help for this page

Select Code to Download


  1. or download this
    CREATE TABLE articles (
      id int(11) NOT NULL default '0',
    ...
      bodytext text NOT NULL,
      PRIMARY KEY  (id)
    ) TYPE=MyISAM;
    
  2. or download this
    my @terms    = split( / /, $search_terms );
    
    ...
    # Do the execution
    my $query = $db->prepare( $querystr );
    $query->execute();