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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T04:34:51+00:00 2026-06-10T04:34:51+00:00

Basically I have my MySQL dbname = test and my table name = page.

  • 0

Basically I have my MySQL dbname = test and my table name = page.

I want to create a query using a php PDO to check if the table “page” exists in my db “test”

I’ve tried these 2 things but it doenst work.. the first example always tells me that it doesn’t exists.. even when it does exists in my db and the 2nd example tells me that it always exists… even when it doesnt exists….

$db = new PDO('mysql:host=' . $DB_SERVER . ';dbname=' . $DB_NAME, $DB_USER, $DB_PASS);

if (array_search('pages', $db->query('show tables')->fetch()) !== false) {
    echo "the db exists";
} else {
    echo "the db doesnt exists";
}

I’ve also tried this

$results = $db->query('SHOW TABLE LIKE \'page\'');
if (count($results) > 0) {
    echo 'table exists';
} else {
    echo "it doesnt";
}
  • 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-10T04:34:52+00:00Added an answer on June 10, 2026 at 4:34 am

    How about:

    $results = $db->query('SHOW TABLES LIKE \'page\'');
    if (count($results->fetchAll()) > 0) {
        echo 'table exists';
    } else {
        echo "it doesnt";
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Basically, I have multiple URL's stored in a MySQL table. I want to pull
I have a mysql table with three columns: username, location, timestamp. This is basically
I have a method that basically returns the results of a mysql query. public
I have an application that shows data from a MySQL table. Basically, my application
I started working with php and mysql today. Basically, what I have, is an
displaying html problem with php & mysql Hi basically i have a quick mysql_fetch_array
I am using C++ and MySQL. I have data objects I want to persist
I have a MySQL table which basically serves as a file index. The primary
Ok So Basically I have made MySQL table on PhpMyAdmin. It's on local host,
So, basically, I have a MySQL table called 'topics' and another one called 'replies',

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.