Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/06/2009, 14:42
Avatar de bacdavi
bacdavi
 
Fecha de Ingreso: junio-2006
Ubicación: http://localhost/
Mensajes: 351
Antigüedad: 18 años, 7 meses
Puntos: 7
Respuesta: Website Multi Lenguaje

con php
Código PHP:
<if (isset($_GET[idioma]=="ES")){
//un query hacia la base de datos por ejemplo
mysql_query("SELECT articulo_espaniol FROM tbl_informacion WHERE id='2' ");
//inicias tu bucle while y todo tu contenido
}else{//nos indicara q es ingles
mysql_query("SELECT articulo_ingles FROM tbl_informacion WHERE id='2' ");
//inicias tu bucle while y todo tu contenido

y tu tabla mysql q contenga los campos del articulo en español y tu articulo en ingles