me gustaria saber su opinion si es que esto esta mal o esta bien gracias
Código PHP:
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
> <script type="text/javascript">
function variable()
{
u=document.getElementById("contenido").innerHTML;
contac.H.value=u;
}
</script>
</head>
<body>
<form action="recibe.php" method="post" onmouseover="javascript:( variable());" name="contac">
<input name="nombre" type="text" />
<input name="H" type="hidden" value="" />
<div id="contenido" contenteditable="true" >Este es un texto </div>
<input type="submit" value="buoton" />
</form>
</body>
</html>
esta es la pagina recibe.php
Código PHP:
Ver original<?php
$a=$_POST['H'];
$r=$_POST['nombre'];
mysql_query("INSERT INTO nombres (nombre,hola)VALUES('$r', '$b')"); {
echo $TT[0];
echo $j;
echo "<br />";
}
?>