Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7955049
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T03:36:57+00:00 2026-06-04T03:36:57+00:00

I recently moved from mysql_ functions to PDO, and there is something i can’t

  • 0

I recently moved from mysql_ functions to PDO, and there is something i can’t adapt to my situation.

The problem is the search query, actually i’m doing like that :

$resultat = $DB->prepare('SELECT * FROM `posts` WHERE `title` LIKE :searchterm OR `tags` LIKE :searchterm LIMIT '.$debut.', '.NB_ART);
$resultat->bindParam(':searchterm',$searchterm);
$resultat->execute();

Knowing that the size of the query may change depending on user search, how can i do something like that :

$tab = explode(' ',$searchterm);
$query = 'SELECT * FROM posts WHERE ';

foreach($tab as $value){
    if( strlen($value)>2 ){
        $query .= ' (`title` LIKE "%'.$value.'%" OR `tags` LIKE "%'.$value.'%") AND';
    }
}
$query = substr($query,0,-3);
$query .= 'ORDER BY `date` DESC';

// And how can i do the bindParam() here ?

I’ll appreciate if you can show me a small example to start with.

Thanks 😉

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T03:37:00+00:00Added an answer on June 4, 2026 at 3:37 am
    $data = array();
    $arr_query = array();
    
    $tab = explode(' ',$searchterm);
    $query = 'SELECT * FROM posts WHERE ';
    
    foreach($tab as $value){
        if( strlen($value)>2 ){
            // sry for that, but i think implode() better
            $arr_query[] = '(`title` LIKE ? OR `tags` LIKE ?)';
    
            $data[] = '%'. $value .'%';
            $data[] = '%'. $value .'%';
        }
    }
    $query .= implode(' AND', $arr_query);
    $query .= ' ORDER BY `date` DESC';
    
    $res = $pdo->prepare($query);
    $res->execute($data);
    

    limits in the first example must be protected too.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We recently moved from SVN to Git, but there's a single legacy branch that
I recently moved my blog from http://blog.mydomain.com to http://mydomain.com My problem now is that
I've recently moved from VB6 to VB.NET and I am finally getting there with
I've recently moved from vim to Emacs because I want to use org-mode .
I am currently using ASP.NET MVC 2.0 RC2, having recently moved from version 1.0.
I've recently moved my project from sourceforge to Google code. I'm intrigued by the
We have recently moved some data from an SQL Database instance to another one
I recently moved my asp.net appliaction from windows 2003 / IIS 6 to windows
I have recently moved my VisualSVN Server 2.5.2 to a new machine(from Windows Server
I recently moved from NetBeans to Eclipse and I very much miss one great

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.