Zitat von
citybreaker:
Ok, hab das jetzt verbessert. Die Datenbank test gibt es, hab sie ja angelegt.
Hab auch mal nen Test eintrag gemacht. Und nun steht da:
Zitat:
Warning: mysql_fetch_assoc(): supplied argument is not a valid
MySQL result resource in /usr/export/www/vhosts/funnetwork/hosting/citybreaker/
mysql/index.php on line 6
Hi,
dann änder deinen Code mal in:
Code:
<?php
mysql_connect("
localhost","*****","******");
mysql_select_db("test");
$
sql="SELECT * FROM `test`";
$result=mysql_query($
sql);
if (!$result)
{
echo mysql_error();
} else
{
while ($row=mysql_fetch_assoc($result))
{
echo $row["Name"].$row["Nick"].$row["Mail"];
};
};
?>
mfG
mirage228