Einzelnen Beitrag anzeigen
Alt 30.06.2004, 08:40  
Gast
 
Beiträge: n/a
Standard

Code:
<html>
<head>
<title>bestand</title>
</head>
<body>

<?php

$username = "ktremmel";
$password = "xxx";
$hostname = "10.128.1.5:3306";	
$query_text = "select * from artikel;"
$dbh = mysql_connect($hostname, $username, $password) 
  echo mysql_errno($dbh) . ": " . mysql_error($dbh). 
  print "Connected to MySQL
";

$result = mysql_query($query_text, $db_link);

echo "result";
  mysql_close($dbh);

php?>



</body>
</html>
so sieht der code jetzt aus , kommt aber keine fehlermeldung mehr , is jetzt einfach ne weiße seite
  Mit Zitat antworten