Cita:
Iniciado por jcxnet Ya probaste con [URL="http://php.net/manual/en/function.htmlentities.php"]htmlentities[/URL] ?
FORMULARIO
<form name="formulario" method="post" action="111.php" accept-charset="ISO-8859-1" enctype="multipart/form-data">
<div style="margin-top:10px;width:475px">
<textarea name="espacio" id="myspace" rows="30" cols="50" style="width:475px;height:170px"></textarea>
</div>
<p>
<input type="submit" value="enviar">
</form>
Y
Mira este es el codigo que procesa el formulario
<?php
$espacio = $_POST ['espacio'];
$abrir_espacio=fopen("miespacio.php","w+");
fputs($abrir_espacio,"$espacio");
fclose($abrir_espacio); //cierro fotolog
{
header ("Location: colores.php"); }
?>
Gracias por tu mensaje