您好以下不是在网页上播种任何东西。我哪里出错了?
The following is a link to profile.php
?>
<a href="profile.php?id=<?php echo $id ?>"><?php echo $id;?></a>
<?PHP
========================================= 这是链接的php文件profile.php
<html>
<body bgcolor='#4c5865'>
<p style="position: absolute ; top: 0; text-align: left><font face="geneva" size='1' color="#ccc"><a href="cbs.php" ><b><font color="white">Home</font></p></a>
<?php
include("db1.php");
$id=$_GET['id'];
$result = $mysql_query ("select agt,dvd FROM agttot where agt='$id'");
// keeps getting the next row until there are no more to get
while($row = mysql_fetch_array( $result )) {
$ac =$row[0];
$dc =$row[1];
$bc =$row[2];
// echo "<tr bgcolor='#a9a9a9'><td align='right'>";
print $ac;
// echo "</td><td align='right'><b>";
print $dc;
}
?>
</body>
</html>