如何将textarea数据发送到另一个页面?

时间:2011-02-06 20:06:34

标签: html post

我对这类事情不熟悉......我需要将3个文本区域的数据提交到另一页...... 我该怎么做?
附:如果可以的话,我会使用输入。

1 个答案:

答案 0 :(得分:8)

您需要使用表单创建页面...例如,将其命名为form.html 使用此代码例如:

  <form id="form1" name="form1" method="post" action="acceptpage.php">
  <input type="text" name="input" id="textfield" />
  <textarea name="text" id="textarea" cols="45" rows="5"></textarea>
  <input type="submit" name="button" id="button" value="Send" />
  </form>

之后创建名为acceptpage.php的页面 把它放在身体标签之间

<?php
$frominput = $_POST[input]; // Variable who accept your data from input
$fromtextarea = $_POST[text]; // Variable who accept your data from textarea
// You don't need to use variables, but if you starter, easier to understand.
    // Do something with your arrived data... 
// Stupid, but for short explanation... for example echo it...
echo $fromtextarea;
echo $frominput;
?>

当然,您可以使用html发送数据,但是您无法接受数据,因为接受数据需要像php这样的编程语言。我使用上面的php向你展示它是如何工作的......

编辑...(我刚才看到你想把数据放到数据库中)...... 这是代码:

<?php
$frominput = mysql_real_escape_string($_POST[input]);
$fromtextarea = mysql_real_escape_string($_POST[text]);
// Do something with your arrived data... 
$query = mysql_query("INSERT INTO table (rowforinput, rowfortextarea) VALUES
    ('$frominput','$fromtextarea')") or die (mysql_error());
?>

正如您所看到的,接受数据的变量几乎没有修改,我称之为mysql_real_escape_string函数,以使数据更安全。如果您想了解有关mysql_real_escape_string函数的更多信息,请mysql_real_escape_string

不要忘记首先建立与数据库的连接。为此,我通常会自己创作:

        function connect_db() {
        mysql_connect("localhost", "username", "password");
        mysql_select_db("database");
                      }

使用<?php connect_db(); ?>

调用函数

更新03.15.2015

自2011年以来在PHP中发生了很多变化。函数mysql_connect将来会被弃用。请改用mysqli或PDO。

参考:

mysql_connect deprecated

MySQL Improved Extension (Mysqli)

PHP Data Objects Interface (PDO)