Ver Mensaje Individual
  #5 (permalink)  
Antiguo 28/07/2013, 20:31
Avatar de jor_0203
jor_0203
 
Fecha de Ingreso: octubre-2011
Ubicación: mexico
Mensajes: 760
Antigüedad: 13 años, 1 mes
Puntos: 8
Respuesta: como inserta html a mysql y cmo sacarlo despues

me gustaria saber su opinion si es que esto esta mal o esta bien gracias
Código PHP:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Documento sin t&iacute;tulo</title>
  6. <script type="text/javascript">
  7. function variable()
  8. {
  9. u=document.getElementById("contenido").innerHTML;
  10. contac.H.value=u;
  11. }
  12. </script>
  13. </head>
  14. <body>
  15. <form action="recibe.php" method="post" onmouseover="javascript:( variable());" name="contac">
  16. <input name="nombre" type="text"  />
  17. <input name="H" type="hidden" value="" />
  18. <div id="contenido" contenteditable="true" >Este es un texto </div>
  19. <input type="submit" value="buoton"  />
  20. </form>
  21. </body>
  22. </html>

esta es la pagina recibe.php
Código PHP:
Ver original
  1. <?php
  2. mysql_connect('localhost','root','');
  3. mysql_select_db('diveditable');
  4. $a=$_POST['H'];
  5. $r=$_POST['nombre'];
  6. $b=htmlentities($a);
  7. mysql_query("INSERT INTO nombres (nombre,hola)VALUES('$r', '$b')");
  8. $t=mysql_query("select nombre, hola from nombres");
  9. while($TT=mysql_fetch_array($t))
  10. {
  11. echo $TT[0];
  12. $j=html_entity_decode($TT[1]);
  13. echo $j;
  14. echo "<br />";
  15. }
  16. ?>