日期:2014-05-17 浏览次数:20685 次
while ($row=mysql_fetch_row($result))
{
for ($i=0; $i<mysql_num_fields($result); $i++ )
{
echo '<a href="../products/index.php?pclass=$row[$i]">';//这一行,plass=后面应该怎么写才符合规范?
echo "$row[$i]";
echo '</a>';
}
}