when i try to connect to the database i have these error.
"ect(): (28000/1045): Access denied for user 'rentalcl_'@'localhost' (using password: YES) in /home/rentalcl/public_html/server.php on line 10"
Orginally, i created everything MAMP, but i then i want to host my website online. so chose this hosting website. so i basically uploaded every file into this web hosting. Ih ave provide first couple of lines. please help me out.
<?php
session_start();
// variable declaration
$username = 'rentalcl_';
$password = 'x';
$database = 'rentalcl_registration';
$host = 'localhost';
// connect to database
$db = mysqli_connect($host, $username, $password, $database);
sincerely,
siva
"ect(): (28000/1045): Access denied for user 'rentalcl_'@'localhost' (using password: YES) in /home/rentalcl/public_html/server.php on line 10"
Orginally, i created everything MAMP, but i then i want to host my website online. so chose this hosting website. so i basically uploaded every file into this web hosting. Ih ave provide first couple of lines. please help me out.
<?php
session_start();
// variable declaration
$username = 'rentalcl_';
$password = 'x';
$database = 'rentalcl_registration';
$host = 'localhost';
// connect to database
$db = mysqli_connect($host, $username, $password, $database);
sincerely,
siva
Last edited: