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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T11:27:15+00:00 2026-06-18T11:27:15+00:00

I get this error: Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given

  • 0

I get this error:

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in /home/rydes235/public_html/search-test.php on line 34

when trying to query my database.

my query is:

    $query = mysql_query("SELECT postcode, ( 3959 * acos( cos( radians('$latitude') ) * cos( radians( lat ) ) * cos( radians( lng ) - radians('$longitude') ) + sin( radians('$latitude') ) * sin( radians( lat ) ) ) ) AS distance FROM uk_postcode_05 HAVING distance < 25 ORDER BY distance ASC LIMIT 0 , 5");

and im trying to display simply with:

    while($row = mysql_fetch_array($query)){
    $town = ($row['town']);
    $country = ($row['country']);
    echo ($town.','.$country.'<br>');
}

(line 34 is the mysql_fetch_array() line).

my mysql table has columns – postcode, town, country, longitude, latitude, region.

any one have any idea? let me know if you need more info, 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-18T11:27:16+00:00Added an answer on June 18, 2026 at 11:27 am

    You need to ensure that mysql_query does not return an error before calling mysql_fetch_array()

    $query = mysql_query("...");
    if ($query == false) {
        echo "Mysql error '". mysql_errno() . "' : " . mysql_error();
    } else {
        ...
    }
    

    You should also stop using mysql_*() functions as they are deprecated and take a look at MySQLi to protect your database against SQL injections.

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

Sidebar

Related Questions

Possible Duplicate: “Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given” error while
Possible Duplicate: mysql_fetch_array() expects parameter 1 to be resource, boolean given in select This
Possible Duplicate: mysql_fetch_array() expects parameter 1 to be resource, boolean given in select i
Possible Duplicate: mysql_fetch_array() expects parameter 1 to be resource, boolean given in select I
I get the following error Warning: mysqli_error() expects exactly 1 parameter, 0 given The
When i try to run this code i get the error: Warning: mysql_fetch_array() expects
Possible Duplicate: mysql_fetch_array() expects parameter 1 to be resource, boolean given in select I'm
I get this error Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result
I get this warning in my error logs and wanted to know how to
I get this error in my app { error: { message: Missing client_id parameter.,

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.