| // +--------------------------------------------------------------------+ // // $Id$ // // Directorio raíz real del sistema. $ROOTDIR = '/var/www/sistemas/ai'; // Agrego un include path. require_once 'MECON/general.php'; prepend_include_path("$ROOTDIR/local_lib"); // Uso siempre a Marco. require_once 'MECON/Marco.php'; $MARCO = new Marco("$ROOTDIR/conf/Marco.php"); #$MARCO->setEspacios(false); // Siempre le agrego una barra al costado. require_once 'HTML/Table.php'; $LAYOUT = new HTML_Table( array( 'width' => '100%', 'align' => 'center', 'valign' => 'top', 'border' => 0, 'cellspacing' => 0, 'cellpadding' => 0, ) ); $LAYOUT->setAutoGrow(true); $LAYOUT->setCellAttributes(0, 0, array('width' => '1')); $LAYOUT->setCellAttributes(0, 1, array('width' => '10')); $LAYOUT->setCellContents(0, 1, ' '); // Siempre uso mi base de datos. require_once 'AIDB.php'; $db =& AIDB::connect(); ?>