Tanks you for the information! i have fix a few thig and now it is working even if i dont have any contry in the db yet.
there is one thing i dont understand still
this code go's in a page to register some user.
and i have this line in my code
include "../commun/connexion.inc.php";
then when the page load i have all my form waiting for information to feed the database but with some error message like these down here
Warning: Accès refusé pour l'utilisateur: 'nom_utilisateur@localhost' (mot de passe: OUI) in c:\program files\easyphp\www\commun\connexion.inc.php on line 7
Warning: MySQL Connection Failed: Accès refusé pour l'utilisateur: 'nom_utilisateur@localhost' (mot de passe: OUI) in c:\program files\easyphp\www\commun\connexion.inc.php on line 7
Now the thing is that they have not fill in their acount yet so how could they have a acount yet?
these 2 message are telling me that i dont have acces but the user is 'nom_utilisateur@localhost' and this is the information that i find in connexion.inc.php
and they refer to line 7
so i dont get it right now!
Now the line 7 in my connexion.inc.php file is down here
1 <?php
2 $dbname = 'nom_base';
3 $hostname = 'Localhost';
4 $username = 'nom_utilisateur';
5 $password = 'mot_de_passe';
6
7 $id_link = mysql_connect($hostname, $username,
$password);
8
9 ?>
do i have to change something here or this should be like that.
tanks for helping me again!