Tabelle aus phpmyadmin per php mit Daten füllen

Hab ich ja:

$conn = mysql_connect("localhost", "mysql_user", "mysql_password");

if (!$conn) {
echo "Keine Verbindung zur DB: " . mysql_error();
exit;
}

if (!mysql_select_db("DBTest")) {
echo "Kann DBTest nicht auswählen: " . mysql_error();
exit;
}
 
Jetzt komm ich drauf...

http://localhost/Praktikant/Kontakt.php

Aber dann kommt das:

Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'mysql_user'@'localhost' (using password: YES) in CXampp\xampp\htdocs\Praktikant\Kontakt.php on line 9
Keine Verbindung zur DB: Access denied for user 'mysql_user'@'localhost' (using password: YES)

_____________________________________________________________________________________


5 <title>Aufrufen der Tabelle Kontakt</title>
6 </head>
7
8 <?php
9 $conn = mysql_connect("localhost", "mysql_user", "mysql_password");
10
11 if (!$conn) {
12 echo "Keine Verbindung zur DB: " . mysql_error();
13 exit;
14 }
15
16 if (!mysql_select_db("DBTest")) {
17 echo "Kann DBTest nicht auswählen: " . mysql_error();
18 exit;
19 }
20
21 $sql = "SELECT Name, Vorname, EMail, Betreff"
22 FROM Kontakt;
23
24 $result = mysql_query($sql);
25
26 if (!$result) {
27 echo "Anfrage ($sql) konnte nicht ausgeführt werden : " . mysql_error();
28 exit;
29 }
30
31 if (mysql_num_rows($result) == 0) {
32 echo "Keine Zeilen gefunden, nichts auszugeben, daher Abbruch";
33 exit;
34 }
35
36 while ($row = mysql_fetch_assoc($result)) {
37 echo $row["Name"];
38 echo $row["Vorname"];
39 echo $row["EMail"];
40 echo $row["Betreff"];
41 }
42
43 mysql_free_result($result);
44 ?>
45
46 <body>
47 </body>
48 </html>
 
Probier mal:
PHP:
$sql = "SELECT * FROM   Kontakt";

und das Passwort scheint auch falsch zu sein...
 
Zurück