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条)

报告相同问题?