Help for this page

Select Code to Download


  1. or download this
        $sth = $dbh->prepare('select current_date()');
        $sth->execute();
        my ($current_date) = $sth->fetchrow_array();
        $sth->finish();
    
  2. or download this
        my $current_date = $dbh->THEFUNCTION('select current_date()');