Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/11/2010, 04:13
Avatar de Rankxerox1984
Rankxerox1984
 
Fecha de Ingreso: septiembre-2010
Mensajes: 253
Antigüedad: 13 años, 7 meses
Puntos: 4
Respuesta: Multiidioma php y CSS ¡Resuelto!

Lo resolví, dejo el código por si le sirve a alguien

Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" " http://www.w3c.org/TR/xhtml1/DTD/xhtml1-strict.dtd ">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">



<head>

 <!--Aquí se indica donde está la hoja de estilos CSS -->

   <link type="text/css" rel="stylesheet" href="Estilos/hoja_estilos.css">


   <!--Aquí se indican los estilos CSS particulares de esta hoja CSS -->

   <style></style>
   
   <meta http-equiv="Content-Type"content=" text/html;charset=utf-8"/>
   <title>titulo</title>

</head>
<body>

  <!--MArco general-->

   <div id="container">

   <div id="fondo_img">

   <img src="Img/GOTA_2.png" /></div>

<!--Espacio para Noticias-->
   <div id="Panel_Noticias">

     <P>Noticias</p>
 
   <div id="Menu_derecha">
   
      <div id="Menu1"><p> <a rel="nofollow" href="consultor.php">Consultores</a></p></div>
      <div id="Menu2"><p> <a rel="nofollow" href="empresa.php">Empresas</a></p></div>
      <div id="Menu3"><p> <a rel="nofollow" href="Webmap.html">Mapa del Web</a></p></div>
 
 <!--Aquí va el cuerpo de la web, -->
  
   <div id="Panel_principal">
    <p>

 <!--averiguamos el idioma del navegador--> 

<?php

$Lengua = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'],0,2);

//presentamos el texto

switch($Lengua){

    case "es":
echo '<div id="cuerpo">';
include('Textos/SP_Inicio_Inicio.txt');
echo '</div>';
break;

case "en":
echo '<div id="cuerpo">';
include('Textos/EN_Inicio_Inicio.txt');
echo '</div>';
break;

case "fr":
echo '<div id="cuerpo">';
include('Textos/FR_Inicio_Inicio.txt');
echo '</div>';
break;

default:
echo '<div id="cuerpo">';
include('Textos/SP_Inicio_Inicio.txt');
echo '</div>';
break;
}
  

?>   

</div >

  <!--Aquí va el espacio para publicidad-->

   <div id="Add_Sense">
    <p> Este es el espacio reservado para la publicidad</p>

</div>
</body>
</html>
Espero que le sirva a alguien