Hallo,
ich will eine Datenbank mit PHP abfragen extension_dir ist auf C:/PHP gesetzt das Kommentarzeichen ; vor extension=php_mysql.dll hab ich entfernt PHP läuft als ISAPI unter IIS php_mysql.dll, libmysql.dll und ntwdblib.dll sind im PHP verzeichnis MySql Datenbank und Tabellen sind da
ich bekomme keine Ausgabe kann mir jemand helfen
lg Fridolin
das sind die skripte
zweiteseite.php
ersteseite.htm
start.htm
ich will eine Datenbank mit PHP abfragen extension_dir ist auf C:/PHP gesetzt das Kommentarzeichen ; vor extension=php_mysql.dll hab ich entfernt PHP läuft als ISAPI unter IIS php_mysql.dll, libmysql.dll und ntwdblib.dll sind im PHP verzeichnis MySql Datenbank und Tabellen sind da
ich bekomme keine Ausgabe kann mir jemand helfen
lg Fridolin
das sind die skripte
zweiteseite.php
Code:
<html>
<head>
<title>4HIA</title>
</head>
<body bgcolor = "#FFCC99" text = "#AABBFF" link = "#AABBFF" vlink = "#DDEEFF" alink = "#AACCDD">
<h1>NAVIGATION</h1>
<hr noshade = "noshade" width = "600" size = "3" align = "center">
<font face = "Castellar" color ="#AABBFF" size = "4">Michael Tomasitz</font></p>
<?php
$db = mysql_connect("localhost", "root", "WieDoofMussManSeinUmSeinPswwortHierStehenZuLassen?");
if(!mysql_db_select("php", $db))
{
die("Datenbank php konnte nicht ausgewählt werden");
}
$result = mysql_db_query("php", "select * from mp3s");
$number = mysql_num_rows($result);
for($i = 0; $i < $number; $i++)
{
$eins = mysql_result($result, $i, "id");
$zwei = mysql_result($result, $i, "name");
$drei = mysql_result($result, $i, "verzeichnis");
echo "<hr noshade = \"noshade\" width = \"600\" size = \"3\" align = \"center\">";
echo "
$eins-$zwei</p>";
}
mysql_close($db);
?>
</body>
<html>
ersteseite.htm
Code:
<html>
<head>
<title>4HIA</title>
</head>
<body bgcolor = "#FFCC99" text = "#AABBFF" link = "#AABBFF" vlink = "#DDEEFF" alink = "#AACCDD">
<h1>LINKS</h1>
<a href = "http://www.php.de" target = zweiteseite align = "left" alt =>PHP SEITE</a>
<font face = "Castellar" color ="#AABBFF" size = "4">Michael Tomasitz</font></p>
</body>
<html>
start.htm
Code:
<hrml>
<head>
<title>4HIA</title>
</head>
<frameset cols = "250,*">
<frame src = "ersteseite.htm" name ="ersteseite" scrolling = "no" frameborder ="0">
<frame src = "zweiteseite.php" name ="zweiteseite" scrolling = "yes">
<noframes>
Ihr Browser verwendet keine Frames</p>
</noframes>
</frameset>
</html>