bonjour
Est ce que quelqu'un pourrait m'aider sur la connexion php/mysql?
Voici l'erreur qui s'affiche :
>td align=center colspan=3> Ce table me permet d'afficher mes clients.
Warning: Can't connect to MySQL server on 'localhost' (10061) in c:\program files\easyphp\www\index.php on line 14
Warning: MySQL Connection Failed: Can't connect to MySQL server on 'localhost' (10061) in c:\program files\easyphp\www\index.php on line 14
impossible de se connecter
voici le scripte :
<html>
<head>
<title> page test</title>
</head>
<body>
<table border=1>
<tr>
>td align=center colspan=3>
Ce table me permet d'afficher mes clients.
</td>
</tr>
<?
$link=mysql_connect("localhost", "root" ) or die ("impossible de se connecter" );
mysql_select_db ("affaires" ) or die ("impossible d'accèder à la base de données" );
$query="select * from client";
$result =mysql_query($query);
while($val=mysql_fetch_array($result))
{
$num=$val["numero"];
$nom=$val["nom"];
$pre=$val["prenom"];
print"<tr>";
print"<td>";
print"$num";
print"</tr>";
print"</td>";
print"<td>";
print"$nom";
print"</td>";
print"<td>";
print"$pre";
print"</td>";
print"</tr>";
}
mysql_close($link);
?>
</table>
</body>
</html>
merci de votre aide
@+
sono77