Help for this page

Select Code to Download


  1. or download this
    my $query = "UPDATE items SET price=? WHERE itemref=?";
    $sth = $dbh->prepare ( $query );
    $sth->execute ($price, $itemref);
    $sth->finish ();