Help for this page

Select Code to Download


  1. or download this
    my $sql = "this is not sql"  ;
    my $sth = $dbh->prepare($sql) or $m->abort(500) ;
    
  2. or download this
    use DBI ;
    
    ...
    my ($name) = $sth->fetchrow_array;
    
    $r->print( ".$name.\n") ;