PHP - vinculos a carpetas

 
Vista:

vinculos a carpetas

Publicado por Jordi (1 intervención) el 24/03/2010 14:09:16
Hola:
Tengo un problema con php/mysql.
Tengo una base de datos con una serie de campos donde voy insertando registros.
Los registros son nombres de documentos en .doc , .txt , .jpg , etc dependiendo del tipo de documento.

tengo el campo idexpediente por el cual busco los documentos relacionados con esa id.
en la base de datis recojo solo el nombre del documento y el documento fisicamente lo guardo en carpetas diversas, permisos de obra, presupuestos, planos, documentos, proyectos 3d. varios.

entonces cuando mediante php hago la comprobacion mediante form del numero de expediente:

expedientes.php?idexpediente=<?php echo $row_expedientes['idexpediente']; ?>

me envia a una nueva pagina donde aparecen los datos fisicos de este expediente, es decir:
nombre, apellidos, email, numero de expediente, numerto de cliente y en una tabla deberia de aparecer el contenido (en caso de haberlo) de las carpetas en cuestion, pero NO SE COMO CREAR UN VINCULO DE TEXTO QUE ABRA Y MUESTRE EL CONTENIDO DE LA CARPETA EN CUESTION.
Tengo esto pero no me funciona :
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="30" colspan="3"><span class="Estilo1">Su presupuesto :           <?php echo $row_carpeta['presupuesto']; ?></span></td>
<td height="30"> </td>
</tr>
<tr>
<td width="25%" height="30"><div align="center" class="Estilo2">Diseños  y Planos </div></td>
<td width="25%" height="30"><div align="center" class="Estilo2">Documentos</div></td>
<td width="25%" height="30"><div align="center" class="Estilo2">Estado de la obra </div></td>
<td width="25%" height="30"><div align="center" class="Estilo2">Varios</div></td>
</tr>
<tr>
<td width="20%" height="30"><div align="center"><link href="expedientes/disenos/<?php echo $row_carpeta['boceto1']; ?>" </link>></div></td>
<td width="20%" height="30"><div align="center"><?php echo $row_carpeta['doc1']; ?></div></td>
<td width="20%" height="30"><div align="center"><?php echo $row_carpeta['estado1']; ?></div></td>
<td width="20%" height="30"><div align="center"><?php echo $row_carpeta['auxiliar1']; ?></div></td>
</tr>
<tr>
<td height="30"><div align="center"><?php echo $row_carpeta['boceto2']; ?></div></td>
<td height="30"><div align="center"><?php echo $row_carpeta['doc2']; ?></div></td>
<td height="30"><div align="center"><?php echo $row_carpeta['estado2']; ?></div></td>
<td height="30"><div align="center"><?php echo $row_carpeta['auxiliar2']; ?></div></td>
</tr>
<tr>
<td height="30"><div align="center"><?php echo $row_carpeta['boceto3']; ?></div></td>
<td height="30"><div align="center"><?php echo $row_carpeta['doc3']; ?></div></td>
<td height="30"><div align="center"><?php echo $row_carpeta['estado3']; ?></div></td>
<td height="30"><div align="center"><?php echo $row_carpeta['auxiliar3']; ?></div></td>
</tr>
<tr>
<td height="30"><div align="center"><?php echo $row_carpeta['boceto4']; ?></div></td>
<td height="30"><div align="center"><?php echo $row_carpeta['doc4']; ?></div></td>
<td height="30"><div align="center"><?php echo $row_carpeta['estado4']; ?></div></td>
<td height="30"><div align="center"><?php echo $row_carpeta['auxiliar4']; ?></div></td>
</tr>
<tr>
<td height="30"><div align="center"><?php echo $row_carpeta['boceto5']; ?></div></td>
<td height="30"><div align="center"><?php echo $row_carpeta['doc5']; ?></div></td>
<td height="30"><div align="center"><?php echo $row_carpeta['estado5']; ?></div></td>
<td height="30"><div align="center"><?php echo $row_carpeta['auxilia5']; ?></div></td>
</tr>
<tr>
<td height="30"><div align="center"><?php echo $row_carpeta['boceto6']; ?></div></td>
<td height="30"><div align="center"><?php echo $row_carpeta['doc6']; ?></div></td>
<td height="30"><div align="center"><?php echo $row_carpeta['estado6']; ?></div></td>
<td height="30"><div align="center"><?php echo $row_carpeta['auxiliar6']; ?></div></td>
</tr>
</table>
<p>  </p>
<p> </p>
<p> </p>
</div>
</body>
</html><?php
mysql_free_result($carpeta);
?>

Gracias por vuestras respuestas
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder