我正在编写一个链接到我正在使用的服务台软件的网站。服务台包的名称是 OTRS。该软件的父目录名为“OTRS”,该目录下有“Apache”、“mysql”和“OTRS”3个目录。OTRS 保存与服务台软件关联的 .pl 文件。“mysql”包含 OTRS 的数据库和创建的任何自定义数据库。“Apache”目录包含自定义的用户制作的网页。
在“htdocs”下的“Apache”目录中,我想创建一个页面,显示服务台中有多少打开的票证。到目前为止,我已经写了以下内容:
<body
height: 100%;
width: 490px;>
<?php
//mysql conector
$con = mysql_connect("localhost","otrs","xxxxxxx");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("dashboard", $con);
?>
<div id="hig9tv">
<center><p>
<table id='higtable2' border="1" cellspacing="2" cellpadding="2">
<?php
$result = mysql_query("SELECT * FROM news");
$num=mysql_numrows($result);
$i=$num-1;
while ($i != -1) {
$f1=mysql_result($result,$i,"text");
$f2=mysql_result($result,$i,"time");
$f3=mysql_result($result,$i,"date");
?>
<tr>
<td><font face="Arial, Helvetica, sans-serif"><?php echo $f1; ?></font></td></tr>
<tr>
<td width='80px'><font face="Arial, Helvetica, sans-serif"><div id="tiny"><?php echo "$f3 $f2" ; ?></div></font><hr></td>
</tr>
<?php
$i--;
}
?>
</table>
</p></center>
</div>
</body>
但是,当我打开页面时,div 中没有显示任何内容。数据存放在“mySQL”目录下
mysql/数据
无论如何从Apache链接到存储在这个目录中的数据库?
谢谢