el código php lo puso mas abajo
Potro, mueve el scrollbar XD
lamentablemente PHP no opera así, solo entrega la página al cliente, para hacer ese tipo de cosas debes usar javascript
este es el equivalente a tu código en javascript
:
Código Javascript
:
Ver originalfunction picando(){
var texto=document.getElementById('prueba').value;
texto=texto.replace("\n","<br>");
texto=texto.replace("\r","<br>");
var lineas=texto.split("<br>");
document.getElementById('a').value=lineas[0];
document.getElementById('b').value=lineas[1];
document.getElementById('c').value=lineas[2];
document.getElementById('d').value=lineas[3];
}
y tu botón tendría que ser así:
Código HTML:
Ver original<input type="button" name="ok" id="ok" value="Botón" onclick="picando();" />