Ver Mensaje Individual
  #7 (permalink)  
Antiguo 29/03/2011, 15:18
Avatar de IsaBelM
IsaBelM
Colaborador
 
Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 15 años, 10 meses
Puntos: 1012
Respuesta: Crear Tabla apartir de un .txt

solo a modo de notación. zerokilled, esta sería otra manera. incluir el archivo
Cita:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title></title>
<script src="archivo.txt"></script>
<script>
function insertar(){
document.getElementById("mostrar").innerHTML=str;
}
window.onload=function(){insertar()}
</script>
</head>
<body>
<div id="mostrar"></div>
</body>
</html>
archivo.txt
Cita:
str='archivo importado<br />es posible manipularlo';