Help for this page

Select Code to Download


  1. or download this
    $sth = $dbh->prepare(qq(
    SELECT *
    ...
    WHERE stats="2"
    AND poster_name = ') . param('name') . qq('
    ORDER BY poster_name ASC));
    
  2. or download this
    $sth = $dbh->prepare(qq(
    SELECT *
    ...
    ORDER BY poster_name ASC));
    
    $sth->execute(param('name'));