Hello,
I know very little about programming, means what ever learn, i learnt it from the you tube, so in order to explain my problem i am writing every thing so when i get the reply i can understand it.
first i try to download apache, mysql and phpmyadminn but did not succed.
after that i downloaded XAMPP 1.7.7
In XAMPP 1.7.7 I gave this information for my security
MYSQL SECTION: “ROOT” PASSWORD (This line was already there as a heading)
MYSQL super user : root (it was already there so i cant change)
password : bluebus
PhpMyAdmin authentification: http or cokie (i select cokie),
Safe plain password in text file? ((File: C:\xampp\security\security\mysqlrootpasswd.txt): there was a check box i did not click,
XAMPP DIRECTORY PROTECTION (.htaccess) (this line was already there as a heading)
User: bus
Password : bluebuss,
Safe plain password in text file? ((File: C:\xampp\security\security\mysqlrootpasswd.txt): there was a check box i did not click,
after that i went to phpmyadmin
user : root
password: redbus
after this i created a database, DATABASE NAME: CAR,
After this i added a new user for this database, NEW USER NAME: CAR, and password i gave again “redbus”, and i created a table,
after this i created a new file in notpad++, the coding is
-
<?php
-
define (‘DB_NAME’, ‘car’);
-
define (‘DB_USER’, ‘car’);
-
define (‘DB_PASWORD’, ‘redbus’);
-
define (‘DB_HOST’, ‘localhost’);
-
$link= mysql_connect (DB_HOST,DB_USER,DB_PASSWORD);
-
if (!$link) {
-
die (‘could not connect:’ . mysql_error () );
-
}
-
$db_selected=mysql_selected_db (DB_NAME, $link);
-
if (!$db_selected) {
-
die (‘cant user’ . ‘:’ . mysql_error ());
-
}
-
$value = $_post [‘input1’];
-
$sql= “INSERT INTO demo (input1) VALUES (‘$value’)”;
-
if (!mysql_query ($sql)) {
-
die (‘error:’ . mysql_error () );
-
}
-
mysql_close ();
-
?>
when i try to run it its give me this error and i dont understand why
Notice: Use of undefined constant DB_PASSWORD - assumed ‘DB_PASSWORD’ in C:\xampp\htdocs\PhpProject1\index.php on line 8
[Warning: mysql_connect() [function.mysql-connect]: Access denied for user ‘car’@‘localhost’ (using password: YES) in C:\xampp\htdocs\PhpProject1\index.php on line 8
could not connect:Access denied for user ‘malakiarif’@‘localhost’ (using password: YES)
please help me guys, i try to found out the answer by googling and wasted my whole week but could not find answer, please help me and tell me what i need to correct.
thanks