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 8868241
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T17:13:29+00:00 2026-06-14T17:13:29+00:00

I have goot the following function: public function search_exists($word){ $word=trim($word); $query=SELECT * FROM `search`

  • 0

I have goot the following function:

public function search_exists($word){
   $word=trim($word);
   $query="SELECT * FROM `search` WHERE `word`=$word";
   echo $query;
   $st=$this->pdo->query($query);
   if($st->fetch()){

      return true;
   }
   return false;

}

I want to check whether rows exist.. problem is that I am new to pdo..and It returns false.. when I know that there is a row..hmm

UPDATE:

About sql_injection:

I use this:

  $word=$pdo->quote($_GET['search']);

I thought to withdraw data from the query like this:

public function search_exists($word){
       $word=trim($word);
       $query="SELECT search_id FROM `search` WHERE `word`=$word";
       echo $query;
       $st=$this->pdo->query($query);
       while($row=$st->fetch()){

          return $row['search_id'];
       }
       return false;
   }

problem..that even the above query doesnt work

  • 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-14T17:13:30+00:00Added an answer on June 14, 2026 at 5:13 pm

    first of all : use prepared statement to bind a parameter :

    public function search_exists($word){
      $word=trim($word);
      $query="SELECT * FROM `search` WHERE `word`=:word";
      echo $query;
      $st=$this->pdo->prepare($query);
      $st->bindValue('word',$word);
      $st->execute();
      if($st->fetch()){
    
       return true;
      }
      return false;
    }
    

    now your query has no problem with quoting AND there is no possibility of sql injection.

    Then, an other possibility is to use the count statement, it is strictly equivalent

    public function search_exists($word){
      $word=trim($word);
      $query="SELECT COUNT(*) FROM `search` WHERE `word`=:word";
      echo $query;
      $st=$this->pdo->prepare($query);
      return $st->fetchColumn() > 0;
    

    }

    About your update

    If you want to get the data :

     public function search_exists($word){
          $word=trim($word);
          $query="SELECT * FROM `search` WHERE `word`=:word";
          echo $query;
          $st=$this->pdo->prepare($query);
          $st->bindValue('word',$word);
          $st->execute();
          $result = $st->fetch(PDO::FETCH_ASSOC);
          if(isset($result['id_result'])){
    
           return result['id_result'];
          }
          return false;
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Have a script to add / remove options from a select field -- the
have a php code like this,going to convert it in to C#. function isValid($n){
Have converted devise new session from erb to Haml but doens't work, this is
Have added the following code to my SQL query: (Note cut down version) DECLARE
Have you managed to get Aptana Studio debugging to work? I tried following this,
have written this little class, which generates a UUID every time an object of
have a problem. At first look at this HTML <div id=map style=background-image: url(map.png); width:
have a nice day. I got problem when trying to create an image from
Have a look at the following code to find X^y. /* Find exponent in
have Googled the cr*p out of this one so apologies if the answer is

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.