使用PHP脚本将HTML输入标记的值写入文件

时间:2016-07-28 15:22:52

标签: javascript php html

有没有办法写这些值,由用户使用php脚本传递给文件。我已经在网上搜索了很多东西,找到了使用php写字符串到文件的例子,但是他们在做什么并没有在场景中工作。实际上他们正在将php变量的值写入文件,但在我的情况下,我想使用php将用户传递给文件的值写入。还有问题是我想从HTML INPUT标签获取值,并且可能 CONVERT 它到php字符串变量。 最后,是否有任何方法从HTML INPUT标记中获取值并将其写入文件?

3 个答案:

答案 0 :(得分:1)

我无法相信你已经在网络上搜索了很多东西"。

首先,将输入值存储在变量中,然后验证它,之后,您可以将变量数据写入文件中。

因此,将值存储在变量中:(请确保通过HTTP-POST发送用户数据 - <form method="post">

$data = $_POST['myFormValue'];

验证

// do validation logic here with $data

然后将数据保存在文件

file_put_contents('/path/to/file/location.txt', $data);

就是这样! 在PHP中,有很多不同的方式来编写和修改文件。有关此主题的更多信息,请查看PHP Dokumentation 希望它有所帮助

答案 1 :(得分:1)

看起来您可能希望通过阅读documentation来了解PHP的实际工作方式。

无论如何,这是一些基本代码,只是为了解决

<?php
  $message = '';

  //php parses the user input for you and populates $_POST, $_GET, and other superglobals
  //in this case, if the $_POST[ 'string' ] exists, then you submitted
  //the form, so we have something to store,

  if( isset( $_POST[ 'string' ] ) ){
      $fh = file_put_contents( 'file.txt', $_POST[ 'string' ], FILE_APPEND );
      $string = htmlspecialchars( $_POST[ 'string' ] );
      $message = "<p>The string '$string' was stored.</p>";
  }
?>
 <html>
     <head><title>test</title></head>
     <body>
        <?php echo $message ?>
        <form method="post">
           <input type="text" name="string" />
           <input type="submit" value="store" />
        </form>
     </body>
 </html>

答案 2 :(得分:0)

Html文件

<html>
<head>
<style>
body{
background-color:red;
text-align:center
}
h1{
Text-align:center;
text-color:red;
background-color:lightblue;
}
form{
text-color:white;
position:fixed;
background-color:blue;
width:50%;
Left:25%;
}
table{
text-align:center;
background-color:White;
width:100%
}
</style>
</head>
<body>
<h1>Womacks Flatworks</h1>
<hr />
<h2>What type of help would you like me to give you?<h2>
<form action="addition.php" method="post">
<table>
<tr><Td>Full Name</td><td><Input type=text name=name autofocus/></td></tr>
<tr><Td>Email</td><td><Input type=Email name=email /></td></tr>
<tr><Td>phone</td><td><input type="tel" name="tel"></td></tr>
<tr><Td>address for Job</td><td><Input type=text name=Address /></td></tr>
<tr><Td>Date for the Job</td><td><Input type=date name=start /></td></tr>
<tr><Td>time</td><td><Input type=Time name=time /></td></tr>
<tr><Td>Message</td><td>    
<textarea name="message" rows="10" cols="30">describe job</textarea>
</td></tr>
<tr><Td><input type="submit"></td><td><input type="reset"></td></tr>
</table> 
</form>
</body>
</html>

addition.php

<?php
// this section calls up the xml file
$fname = 'flatworks.xml';
if (file_exists($fname)) {
$xml = simplexml_load_file($fname);

//this line skips your root for you
$root = $xml->addChild("cd");

//this builds your record

$root->addChild("name",$_POST['name']);
$root->addChild("email",$_POST['email']);
$root->addChild("tel",$_POST['tel']);
$root->addChild("Address",$_POST['Address']);
$root->addChild("Price",'');
$root->addChild("start",$_POST['start']);
$root->addChild("time",$_POST['time']);
$root->addChild("message",$_POST['message']);

// this saves your file in good xml format
$xml->asxml($fname);}

else {
echo $fname.' does not exist.';
}

?>

flatworks.xml

    <?xml version="1.0"?>
<catalog>
 <cd>
   <name>Mickey Mouse</name>         
   <email>Mickey@womacksflatworks.netai.net</email>
   <tel>123456789</tel>
   <Address>1230 sesame st.</Address>
   <Price/>
   <start/>
   <time/>
   <message>describe     job</message>
</cd>
 <cd>
   <name>minnie mouse</name><
   <email>minnie@womacksflatworks.netai.net</email>
   <tel>987654321</tel>
   <Address>1254 sesame st.</Address>
   <Price/>
   <start>2016-07-27</start>
   <time>13:00</time>
   <message>describe job</message>
 </cd>
 <cd>
   <name>Pluto</name>
   <email>pluto@womacksflatworks.netia.net</email>
   <tel>987654321</tel>
   <Address>1234 sesame st.</Address>
   <Price/>
   <start>2016-07-29</start>
   <time>13:00</time>
   <message>describe job</message>
   </cd>    
 </catalog>