Bueno, lo primero es que soy nuevo aqui y os pido un poco de paciencia conmigo... xD
Al tema:
Resulta que tengo una web en la que en cada pagina hay un menu, concretamente este:
Cita:
Entonces, quisiera crear una función en una hoja aparte que tengo con algunas otras funciones para que al hacer la llamada por ejemplo menu(); apareciera ya ese menu...<tr>
<td class="navText" align="center" nowrap="nowrap"><a href="../Datos_Personales/datos_personales.php">MIEI DATI PERSONALI </a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="../Proyectos/proyectos.php">PROGETTI</a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="grupos.php">GRUPPI</a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="../Revisiones/revisiones.php">APPUNTAMENTI </a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="../Contacta/contacta.php">CONTATTA I STUDENTI </a></td>
</tr>
<td class="navText" align="center" nowrap="nowrap"><a href="../Datos_Personales/datos_personales.php">MIEI DATI PERSONALI </a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="../Proyectos/proyectos.php">PROGETTI</a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="grupos.php">GRUPPI</a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="../Revisiones/revisiones.php">APPUNTAMENTI </a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="../Contacta/contacta.php">CONTATTA I STUDENTI </a></td>
</tr>
Esto seria posible? actualmente lo que tengo es esto, pero no me funciona...
Cita:
Gracias a todos de antemano!! function hacer_menu()
{
$menu='<tr>
<td class="navText" align="center" nowrap="nowrap"><a href="../Datos_Personales/datos_personales.php">MIEI DATI PERSONALI </a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="../Proyectos/proyectos.php">PROGETTI</a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="grupos.php">GRUPPI</a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="../Revisiones/revisiones.php">APPUNTAMENTI </a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="../Contacta/contacta.php">CONTATTA I STUDENTI </a></td>
</tr>
';
echo $menu;
}
{
$menu='<tr>
<td class="navText" align="center" nowrap="nowrap"><a href="../Datos_Personales/datos_personales.php">MIEI DATI PERSONALI </a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="../Proyectos/proyectos.php">PROGETTI</a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="grupos.php">GRUPPI</a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="../Revisiones/revisiones.php">APPUNTAMENTI </a></td>
<td class="navText" align="center" nowrap="nowrap"><a href="../Contacta/contacta.php">CONTATTA I STUDENTI </a></td>
</tr>
';
echo $menu;
}