Help for this page

Select Code to Download


  1. or download this
        WHERE fldTags LIKE '%?%' ORDER
    
  2. or download this
    my $blogTagToShow           =   '%' . (shift) . '%';
    my $query = "SELECT * FROM tblBlogPosts WHERE fldTags LIKE ? ORDER BY 
    +fldDate DESC";
    my $sth = $dbh->prepare($query);
    $sth->bind_param(1, $blogTagToShow);