En realidad puedes llamarlos como vos quiers, siempre y cuando sepas como mostrarlo
Por ejemplo en el menu de navegacion tenemos estas lineas
Código PHP:
<td width="100%">
<a href="?verpagina=Mayor_de_edad">Seccion adultos</a>
</td>
</tr>
<tr>
<td width="100%">
<a href="?mirarpagina=Menor_de_edad">Seccion niños</a>
</td>
</tr>
<tr>
Y añadimos correctamente , en el sector donde las mostramos
Código PHP:
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Here we decide what page to include
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
if($do == "search" or $dosearch == "yes"){ $subaction = "search"; $dosearch = "yes"; include("$path/search.php"); }
elseif($do == "archives"){ include("$path/show_archives.php"); }
elseif($do == "stats"){ echo"You can download the stats addon and include it here to show how many news, comments ... you have"; /* include("$path/stats.php"); */ }
elseif ($verpagina == "Mayor_de_edad"){ include ( "paginaadultos.html");}
elseif ($mirarpagina == "Menor_de_edad"){ include ("paginainfantil.php");}
else{ include("$path/show_news.php"); }