10/05/2005, 20:16
|
| | Fecha de Ingreso: septiembre-2004 Ubicación: Chihuahua Mex
Mensajes: 404
Antigüedad: 20 años, 2 meses Puntos: 2 | |
creas una carpeta de como quieras que se llame el modulo despues creas un archivo .php que tenga esto
<?php
if (!eregi("modules.php", $PHP_SELF)) {
die ("You can't access this file directly...");
}
$index = 0;
global $sitename; {
include("header.php");
OpenTable();
include ("modules/NOMBRE DE TU MODULO /INDEX.HTML ");
CloseTable();
include("footer.php");
}
?>
DESPUES CREAS UNARCHIVO INDEX.HTML Y AHI PONES LO QUE QUIERAS DESPUES LO GUARDAS EN LA CARPETA DEL MODULO Y LO SUBES A MODULES CON EL FTP ESO ES TODO |