I'm trying to include a file inside a while loop.
Here is the part I'm having trouble with.
Any help would be great.
Here is the part I'm having trouble with.
PHP Code:
while($row=mysql_fetch_array($result))
{
$file=$row[file_name];
$description=$row[description];
$file="<a href=\"ctr.php?$this_file=$file\">$file</a>";
echo "<tr><td bgcolor=\"royalblue\"><font size=\"-1\">$file</font></td>
<td><font size=\"-1\"> $description</font><br><img src=\"border.png\"></td>
<td bgcolor=\"royalblue\" align=\"center\">Need to include a file here</td></tr>";
Comment