将textarea值传递给服务器php

时间:2015-05-14 13:47:39

标签: php

我试图捕获文本区域的值并选择你的php以便它保存在服务器上。我所做的功能是更改文本和照片,以便假装我保存的这些更改已保存。

我可以移动朋友。 非常感谢你的时间。

这是我的最后一次尝试:

if(isset($_GET['submit'])){
$salida = $_GET['textarea'];     
$archivo = fopen("prueba2.html", "w+");
fputs($archivo, $salida);
$contenido = file_get_contents($archivo);
fclose($abrir);
}

3 个答案:

答案 0 :(得分:2)

您正在使用$_GET变量,但您的<form>有方法POST。您必须使用$_POST变量。

答案 1 :(得分:1)

这就是html表格非常感谢你

<form id="formulario" action="" method="POST" enctype="multipart/form-data"> 
        <div>
            <h3>Haga "click" encima del contenido a modificar</h3>
        </div>
        <iframe id="probando" src="prueba2.html" scrolling="auto" height="700" width="800" marginheight="0" marginwidth="0" name="probando"></iframe>
        <textarea name="textarea" rows="4" cols="50"></textarea>

        <input id="botonGuardar" type="submit" value="Confirmar cambios"/>
</form>

答案 2 :(得分:0)

为您的textarea命名:

<form>
    <textarea name="myTextarea"></textarea>
    <!-- the rest of your form -->
</form>

然后在你的php中:

$salida = $_GET['myTextarea'];