Ver Mensaje Individual
  #10 (permalink)  
Antiguo 27/04/2006, 10:18
sneider
 
Fecha de Ingreso: septiembre-2005
Mensajes: 379
Antigüedad: 18 años, 7 meses
Puntos: 0
Este es el script que he realizado. La funcion obtener_categorias está en otro script el cual lo llamo mediante require_once(funciones.php), al igual que mostrar_categorias que se encuentra en otro scripr diferente.

<?php
require_once('funciones.php');
?>
<html>
<head>
<title> OFERTA DEL MES</title>
<body style="background:url('imagenes/fondobueno.jpg')">


<p align="left"><b><font color="#CA9F3C" size="5" face="Monotype Corsiva">En esta sección podrás ver cual es la OFERTA DEL MES disponible.<BR>
</font></b></p>
<table width="850" border="7">
<tr>
<td><center></td>
</tr>

<tr>
<td><div align="center">
<?php
$cat_array = obtener_categorias();
mostrar_categorias($cat_array);
?>
</div></td>
</tr>
</table>

</body>
</html>