Bonjour, Je viens d'installer la dernière version de wampserver, en fait c'est la première fois que j'installe un tel service car je suis novice, si tous mes scripts fonctionnent bien chez mon provider, je n'arrive pas à faire le faire fonctionner chez moi, en fait, je n'arrive pas à me connecter sur la base MySql Je n'ai rien modifier serveur localhost user root pas de mot de passe Comment faire ? mon script de connexion
$db = 'xxxxx; $local = 'localhost'; $user = 'root'; $passe = '""'; //establish user connection mysql_connect($local,$user,$passe); //open up database mysql_select_db("$db"
sur 1 script j'ai comme réponse Connection non effectuée ... sur l'autre
Warning: mysql_close(): no MySQL-Link resource supplied in C:\wamp\www\Local\depouillement\connection.php on line 79
Il semble que je suis connectée, mais je n'ai aucune réponse lorsque j'indique un nom ? qui peut me dire ce qui cloche
D'avance merci Lisa
<?php /*dans cet exemple, le formulaire est ré-entrant, je teste donc si la variable nom_recherche existe*/ if (!isset($nom_recherche)) { /*la variable est vide, on ne fait rien */ } else { /* la variable existe, donc le traitement doit se faire */ $traitement = "oui" ; } ?>
<html> <head> <p align="center"><font face="Arial" size="6">Consultation de l'index des Patronymes</font></p> <script language="Javascript"> function imprimer(){window.print();} </script> </head> <body background="../images/fondagawe.jpg" text="#0000FF" vlink="#FF00FF">
//si la variable $traitement = oui, on affiche ici le résultat de la recherche effectuée sur le nom if ($traitement == "oui" {
// 1. connexion à la base mysql_connect("localhost","******","*****" mysql_select_db("agawe" $db = "agawe" ; // 2. extraction des données $table = "indexnom" ; $sql = mysql_query("SELECT DISTINCT * FROM `$table` WHERE noms LIKE'$nom_recherche%'" echo "Les informations suivantes ont été trouvés <br> <br>" ; echo "<table width=90% border=0 cellpadding='2' cellspacing='2'>"; echo "<tr bgcolor='#FFE000'>"; echo "<th>Début</th>"; echo "<th>Fin </th>"; echo "<th>Nom</th>"; echo "<th>Commune</th>"; echo "<th> B </th>"; echo "<th> M </th>"; echo "<th> S </th>"; echo "<th> C </th>"; echo "<th> T </th>"; echo "</tr>"; while ($row = $result = mysql_fetch_array($sql)) { echo "<td><font size='-1'><div align='left'>$row[0]</font></div></td>"; echo "<td><font size='-1'><div align='left'>$row[1]</font></div></td>"; echo "<td><font size='-1'><div align='left'>$row[2]</font></div></td>"; echo "<td><font size='-1'><div align='left'>$row[3]</font></div></td>"; echo "<td><font size='-1'><div align='center'>$row[4]</font></div></td>"; echo "<td><font size='-1'><div align='center'>$row[5]</font></div></td>"; echo "<td><font size='-1'><div align='center'>$row[6]</font></div></td>"; echo "<td><font size='-1'><div align='center'>$row[7]</font></div></td>"; echo "<td><font size='-1'><div align='center'>$row[8]</font></div></td>"; echo "<td><font size='-1'><div align='center'>$row[9]</font></div></td>"; echo "</tr>"; } echo "</table";
//3. fin de la connexion mysql_close(); } ?> <p align="center"> <input name="PCASTUCES" onclick="imprimer()" type="button"value="Imprimer cette page">
</body>
</html>Lisa67 a écrit:
> Bonjour, > Je viens d'installer la dernière version de wampserver, en fait > c'est la première fois que j'installe un tel service car je > suis novice, si tous mes scripts fonctionnent bien chez mon > provider, je n'arrive pas à faire le faire fonctionner chez > moi, en fait, je n'arrive pas à me connecter sur la base MySql > Je n'ai rien modifier serveur localhost user root pas de mot de > passe > Comment faire ? > mon script de connexion > > $db = 'xxxxx; > $local = 'localhost'; > $user = 'root'; > $passe = '""'; > //establish user connection > mysql_connect($local,$user,$passe); > //open up database > mysql_select_db("$db" > > sur 1 script j'ai comme réponse Connection non effectuée ... > sur l'autre > > Warning: mysql_close(): no MySQL-Link resource supplied in > C:\wamp\www\Local\depouillement\connection.php on line 79 > > D'avance merci pour votre aide >