muy interesante es tu aportación, realmente nunca lo había pensado
y si es un forma de contestar aunque he visto gente que puede escribir en un div.
Voy a seguir buscando para ver como le hacen
mil gracias y que Dios te bendiga
Cita:
Iniciado por quimfv
Que el usuario escriba en el div?
Un textarea no te sirve....
Código MySQL:
Ver original<!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=utf-8" />
<title
>Documento
sin t
í
;tulo
</title
> <!--
a {
background-color: #00CCFF;
height: 300px;
width: 300px;
}
p {
background-color: #CCCCCC;
}
#recibe{
color:#ff0000;
}
-->
</style>
<script
type="text/javascript"> document.getElementById
('recibe').innerHTML
=document.getElementById
('mandar').
value; }
</script>
</head>
<body><textarea id="mandar" name="mandar" cols="15" rows="10">escribe datos</textarea>
<p onclick="recibir_datos()"> este es un boton </p>
</body>
</html>