Ver Mensaje Individual
  #6 (permalink)  
Antiguo 02/04/2014, 06:04
botxii
 
Fecha de Ingreso: octubre-2012
Mensajes: 135
Antigüedad: 11 años, 7 meses
Puntos: 8
En head abres php y haces un switch

Ejemplo:
<head>
<?php
switch ($_get['id']){
case "inicio":
Cargas inicio
break;
case "otro":
Cargas script d otro
break;

}
?>
</head>