Help for this page

Select Code to Download


  1. or download this
    my $sth = $db->prepare('SELECT * FROM milton1');
    $sth->execute();
    my ($additionaltext) = $sth->fetchrow_array;
    $sth->finish;
    
  2. or download this
    my ($additionaltext) = $db->selectrow_array('SELECT * FROM milton1');