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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T02:24:05+00:00 2026-05-24T02:24:05+00:00

I want to select some data from db and store in an array. Suppose

  • 0

I want to select some data from db and store in an array. Suppose I have a column “keyword” in my db table. I want to select all rows where keyword column is like “nature”.

I am trying following code:

<?
    $term= "nature";    
    $arr = array();

    $sql = "select keyword from keywords where keyword LIKE '%$term%'";
    $result = mysql_query($sql) or die(mysql_error());  
    $rows = mysql_fetch_array($result); 
    foreach ($rows as $row){
            array_push($arr, $row['keyword']);
        }

    print_r($arr); //output: Array ( [0] => n [1] => n ) 

    ?>

So the result from db should return only one keyword ‘nature’ which i need to store in array.

  1. Why it is storing same string two times? There is no any other row in db similar to the term nature.
  2. Why it is storing only first letter in the array? Shouln’t it store “nature” instead of “n”?

Please help me fixing this.

  • 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-05-24T02:24:06+00:00Added an answer on May 24, 2026 at 2:24 am

    Should be something like

    $term   = "nature";    
    $arr    = array();
    $sql    = "select keyword from keywords where keyword LIKE '%$term%'";
    $result = mysql_query($sql) or die(mysql_error());  
    while( $row = mysql_fetch_assoc( $result ) ) {
     arr[] = $row[ 'keyword' ];
    }
    

    In your solution you only fetch the first record from the result-set as numeric indexed array.

    Btw – you are aware that a LIKE-query starting with a wildcard cannot make use of any index?

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

Sidebar

Related Questions

I have a table for which I want to select top the 5 rows
If all tables I want to delete from have the column gamer_id can i
I have a table that contains some sensitive data that I would like to
I have a table of vehicles with registration numbers, and want to select a
I want to write a query like this: SELECT o.OrderId, MAX(o.NegotiatedPrice, o.SuggestedPrice) FROM Order
I have a PHP server script that SELECTs some data from a MySQL database.
I have a table with some data in it: ColA | ColB | ColC
I want to select top N rows from a dataset. is there any way
I want to be able to store (not echo) some data that has been
I'm using Dojo 1.5 to create a dijit.form.Select with some data from a datastore.

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.