dps69208 2014-03-04 10:42
浏览 98
已采纳

从HTML编写textarea到PHP文件

I'm new to php & html so please go easy on me!

<!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>
<title>Add</title>
</head>

<font size="3">

<div id="TextBox">add</div>
<form name="theform" action="add.php" method="get">
<div id="TextBox-Field" style="margin-top:20px;"><textarea class="TextBox" type="text" name="TextBox" required></textarea></div>

<form name="theform" action="DisplayText.html">
<input type="submit" value="Show">
</font> 
</body>

I've written this in HTML and i would like it to be able to save the text that the user enters into a file. Preferably I would like that to be done with add.php rather than adding php code to this, if possible?

I'm slightly confused as to where to start, i've googled and watched tutorials but still do not understand

Thank You!

  • 写回答

3条回答 默认 最新

  • doushi7394 2014-03-04 10:46
    关注

    Step 1:

    Change this

    <form name="theform" action="DisplayText.html">
    

    to

    <form name="theform" action="add.php" method="post">
    

    Step 2:

    add.php

    <?php
    if(isset($_POST['TextBox']))
    {
     file_put_contents('somefile.txt',$_POST['TextBox'],FILE_APPEND);
     echo "Data written successfully";
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100