Respuesta: Enlace de base de datos
Deberías crear una página para ello. Aquí ye voy a pegar un código que te podría servir
Primero debes copiar lo siguiente en un editor de texto y guardarlo como
enlaces.php o con el nombre que quieras.
PHP:
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'enlaces'); // Pon aquí el nombre de tu archivo
// get special phrase groups
$phrasegroups = array(
);
// get special data templates from the datastore
$specialtemplates = array(
);
// pre-cache templates used by all actions
$globaltemplates = array(
'TEST',
);
// pre-cache templates used by specific actions
$actiontemplates = array(
);
// ###################### REQUIRE BACK-END #########################
require_once('./global.php');
// ##################################################################
// ###################### START MAIN SCRIPT #########################
// ##################################################################
$navbits = array();
$navbits[$parent] = 'Enlaces';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('enlaces') . '");');
?>
Ahora debes ir a admincp y en el estilo que utilices, creas una nueva plantilla, la cual debes llamar igual que la página que has creado, por ejemplo
enlaces. Si vas a utilizar varios estilos, tienes que hacerlo en todos.
Este es el código de la plantilla:
PHP:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle]</title>
$headinclude
</head>
<body>
$header
$navbar
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">ENLACES</td>
</tr>
<tr>
<td class="alt1">Aquí va el contenido que quieras poner en la página. Por ejemplo los enlaces</td>
</tr>
</table>
$footer
</body>
</html>
Ya nos contarás si te ha servido.