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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T20:56:26+00:00 2026-06-13T20:56:26+00:00

When trying to connect to my database using PHP I am getting an error.

  • 0

When trying to connect to my database using PHP I am getting an error.

$connect = mysql_connect("localhost","username","password") or die ("Couldn't Connect!");
mysql_select_db("databasename") or die ("Couldnt find database");

When I try running the script it keeps saying 'Couldnt find database' which means that I am connecting to the server but my database won’t connect.

Am I doing something wrong here? I have pretty much copied and pasted my database name from Cpanel so I know there aren’t any mistakes. But in Cpanel it is displayed as ‘mywebsite’_database

Any ideas?

  • 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-13T20:56:27+00:00Added an answer on June 13, 2026 at 8:56 pm

    You specify in your question that your database is called:

    ‘mywebsite’_database

    If this is the case, then you need to change your code to

    // Connect to the database
    $connect = mysql_connect("localhost","username","password") or die ("Couldn't Connect!");
    
    // Select the database
    mysql_select_db("mywebsite_databasename",$connect) or die ("Couldnt find database");
    

    If the above method does not work then I would advise debugging your connection by listing the databases for that particular user. Do this like so:

    // Connect to the database
    $connect = mysql_connect("localhost","username","password") or die ("Couldn't Connect!");
    
    // Get all the databases for this particular user
    $databases = mysql_list_dbs($connect);
    
    // Loop through the databases and write them on the screen
    while($database = mysql_fetch_assoc($databases)) {
         echo $database['Database']."\n";
    }
    
    exit;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to connect to a MySQL database using the mysql_connect() command however
So i keep getting this error when trying to connect to my database remotely.
I'm trying to connect to a MySQL 5 database using the MySQL ODBC 5.1
I am trying to connect to an Oracle Database using nHibernate. I can connect
I have been trying to connect to mysql all evening using PHP. I know
I'm using HostMonster as my web host and I'm trying connect to a database
I am using Zend Framework and am trying to connect to a database by
I'm trying to connect to a Firebird database using the Zend Framework library (see
I'm trying to feed data from SQL database to FLEX, using php script in
I am trying to use PHP to connect to a database from a website.

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.