English 中文(简体)
传真 Form to post on php page
原标题:HTML Form to post on php page

谢谢大家阅读。 我试图创建一种超文本形式,以便我的朋友能够把案文打入其中,然后更新其网站,不管其形式如何。 我试图制作一个超文本形式(在网站)上,无论输入到哪里,都把字塔放在家里。 php档案。 然而,我不想简单地做一个“一次性”员额,而是试图把它做成这样的事情,使案文里的任何内容都能够把数据带入家中。 php档案。 住宅。 网址是空白,我制作的表格如下:

<form method="post" action="home.php">
    <textarea id="element" name="element" rows="15" cols="80" style="width: 80%">
    </textarea>
    <input type="submit" name="save" value="Save" />
    <input type="reset" name="reset" value="Reset" />
</form>

例如,如果“实例”一词被打上当时提交的形式,则该家。 php档案中应当有“实例”字样。

如果需要更多细节,请作出答复。 感谢:

最佳回答
<?php

 $Input = $_POST[ element ];

 $FileToUpdate = "home.php";
 $fh = fopen($FileToUpdate ,  w ) or die("can t open file");

 fwrite($fh, $Input);

 fclose($fh);     

 ?>

以上编码将做你所希望的事情,但将超出页数(见rel=“nofollow noreferer”>。 但是,我确实认为,你需要从基础开始,获得良好的PHP Tutorial.

问题回答

这应当做到:

<?php
    $filename = "/path/to/home.php";
    $file = fopen( $filename, "w" );
    if( $file == false ) {
       echo ( "Error in opening new file" );
       exit();
    }
    fwrite( $file, $_POST[ element ] );
    fclose( $file );
?>

http://www.tutorialspoint.com/php/php_files.htm“rel=“nofollow noreferer”>file I/O here。

您可以使用“SPOST var”从一个表格站收集数据。

例如,如果你想要打上所谓的“要素”领域的话,你可以使用_美元(单位:美元)。

要求以下代码显示案文中所用的案文。 该法典已进入家。 php

<?php
 echo $_POST[ element ];
?>

同样,你也可以收集所有必要的数据。 希望这一帮助。 请通过。 http://www.w3schools.com/php/php_post.asp,以便获得更多信息。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签