estoy tratando de meter código de html a mysql y despue sacarlo y no he podido
esta es la pagina principal donde inserto los campos
Código HTML:
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"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript"> function variable()
{
u=document.getElementById("contenido").innerHTML;
contac.H.value=u;
}
<form action="a2.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 donde va el html y después lo manda
</div> <input type="submit" value="buoton" />
y esta es la pagina que recibe
Código PHP:
Ver original<?php
$a=$_POST['H'];
$r=$_POST['nombre'];
//$t=nl2br(htmlspecialchars($h)); tambien lo hice de esta forma
mysql_query("INSERT INTO nombre (nombre, hola) VALUES ( '$r', '$a')"); //nombre es el campo de la tabla
echo $TT[0];
echo $j;
echo "<br />";
}
?>
y esto es lo que me sale cuando trato de imprimir
ojala alguien sepa como puedo hacerlo
mil gracias
<div>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtm...t;&lt;html xmlns="
http://www.w3.org/1999/xhtml"&gt;</d...t;&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;</div><div>&lt;title&gt;Documento sin t&amp;iacute;tulo&lt;/title&gt;</div><div>&lt;/head&gt;</div><div>&lt;body&gt;</div><div>&lt;script language=javascript&gt;</div><div>function a(){</div><div>open("http://www.google.com.mx","test","hei ght=200,width=200,location=true");</div><div>}</div><div>&lt;/script&gt;</div><div>&lt;a href="#" onclick="a();"&gt;hola&lt;/a&gt;</div><div>&lt;a href="#" onclick="b();"&gt;hola&lt;/a&gt;</div><div>&lt;script language=javascript&gt;</div><div>function b()</div><div>{</div><div>var a=open("
http://www.google.com.mx","test","he...ose();<span class="Apple-tab-span" style="white-space:pre"> </span></div><div>}</div><div>&lt;/script&gt;</div><div>&lt;/body&gt;</div><div>&lt;/html&gt;</div>