嘿伙计们,我写了一小段代码,它连接到数据库,然后将一些数据输出,echo
但它不像我想要的那样工作:编辑更新代码:
<html>
<head>
<title>Automatische E-mails</title>
</head>
<body>
<?php
include("db_login.php");
$link = mysql_connect($host, $user, $pass) or die ("Keine Verbindung zu der Datenbank moeglich.");
mysql_select_db($db, $link);
$sql = "SELECT `ID_Zuordnung`, `Username`, `Hostname_alt`, `Datum_Ausgabe` FROM `zuordnung` WHERE `Status_Tausch` = 'OK' AND `Status_Altgeraet` = 'NOK' ORDER BY `Hostname_alt` ASC";
$result = mysql_query($sql);
while($resultarray = mysql_fetch_array($result))
{
echo '<p>'.$resultarray['HW_Typ'].'</p>';
echo '<p>'.$resultarray['Hostname_alt'].'</p>';
echo '<p>'.$resultarray['Username'].'</p>';
echo '<p>'.$resultarray['Emailadresse'].'</p>';
echo '<p>'.$resultarray['Datum_Ausgabe'].'</p>';
echo '<p>'.$resultarray['Abteilung'].'</p>';
}
?>
</body>
</html>
运行产生了这个输出:
'.$resultarray['HW_Typ'].'
'; echo '
'.$resultarray['Hostname_alt'].'
'; echo '
'.$resultarray['Username'].'
'; echo '
'.$resultarray['Emailadresse'].'
'; echo '
'.$resultarray['Datum_Ausgabe'].'
'; echo '
'.$resultarray['Abteilung'].'
'; } ?>
我不知道我的错误在哪里,因为昨天一切正常!