How to connect php file to ms access?

My SQL connect failure! please help!?

  • This is the error im getting Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'gaelectr'@'localhost' (using password: NO) in /home/gaelectr/public_html/verify.php on line 8 Error connecting to database. This is my full code please help. Thanks <?php if(isset($_POST['submit'])){ $dbHost = "localhost"; //Location Of Database usually its localhost $dbUser = "gaelectr_user"; //Database User Name $dbPass = "raceme88"; //Database Password $dbDatabase = "gaelectr_login_Members"; //Database Name $db = mysql_connect($localhost,$gaelectr_user,… die("Error connecting to database."); //Connect to the databasse mysql_select_db($gaelectr_login_Members, $gaelectr_login)or die("Couldn't select the database."); //Selects the database /* The Above code can be in a different file, then you can place include'filename.php'; instead. */ //Lets search the databse for the user name and password //Choose some sort of password encryption, I choose sha256 //Password function (Not In all versions of MySQL). $usr = mysql_real_escape_string($_POST['usernam… $pas = hash('sha256', mysql_real_escape_string($_POST['passwor… $sql = mysql_query("SELECT * FROM users_table WHERE username='$usr' AND password='$pas' LIMIT 1"); if(mysql_num_rows($sql) == 1){ $row = mysql_fetch_array($sql); session_start(); $_SESSION['username'] = $row['username']; $_SESSION['fname'] = $row['first_name']; $_SESSION['lname'] = $row['last_name']; $_SESSION['logged'] = TRUE; header("Location: users_page.php"); // Modify to go to the page you would like exit; }else{ header("Location: login_page.php"); exit; } }else{ //If the form button wasn't submitted go to the index page, or login page header("Location: index.php"); exit; } ?>

  • Answer:

    Apparently none of the Answerees even looked at your code. $db = mysql_connect( $dbHost, $dbUser, $dbPass) or die( 'Error Connecting To Database.<br>' . mysql_error()); mysql_select_db( $dbDatabase, $db) or die( 'Couldn\'t Select Database.<br>' . mysql_error($db)); Seeing as you are hashing the password, no need to mysql_real_escape_string() it as well. Cheers, Gitlez

david at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

'(using password: NO)' Change your password to nothing (2 quotation marks '') and see if that works.

TnT

Hello David, Go to this simple tutorial to get over your error. http://www.w3schools.com/php/php_mysql_connect.asp Using the same method but with your MySQL database user, password and database name values.

Mohammad

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.