</tr>
<?php
-$res = mysql_query("select id,path,type from file $sql_suffix");
-while (list($id,$path,$type)=mysql_fetch_row($res)) {
+$res = mysql_query("select id,path,type,dir from file $sql_suffix");
+while (list($id,$path,$type,$dir)=mysql_fetch_row($res)) {
?>
<tr class="<?php echo $type; ?>">
<td><?php echo $id; ?></td>
<td><?php echo $type; ?></td>
- <td><a href="file.php?id=<?php echo $id; ?>"><?php echo $path; ?></a></td>
+ <td><a href="file.php?id=<?php echo $id; ?>&d=<?php echo $dir; ?>"><?php echo $path; ?></a></td>
</tr>
<?php
}