使用Php在.txt中编写表单输入

时间:2015-12-23 15:28:53

标签: php html forms duplicates filehandle

如何复制表格框和我的php中的代码以“抓取新添加的表格框”? 我打算创建4个表格框(电子邮件,密码,联系人,Bio),但我已经停留在第二个。 代码:

<form action="#" method="post">
 <input type="text" name="email" class="emailSubmitSidebar" placeholder=" Your Email">
 <input type="text" name="password" class="password" placeholder="Password">
 <input type="submit" name="submit" class="submitButton">
</form>

<?php
if(isset($_POST["submit"]))
{

$fileHandle = fopen('info.txt', 'w+')
        OR die ("Can't open file\n");
$email=$_POST["email"];
$password=$_POST["password"];
$result = fwrite ($fileHandle, $email, $password);
if ($result)
     {
         print '<script type="text/javascript">'; 
         print 'alert("Email added!")'; 
         print '</script>';  
    } else {
        print '<script type="text/javascript">'; 
        print 'alert("Email not added!")'; 
        print '</script>';  
    };
fclose($fileHandle);
}
?>

PHP代码一直失败,直接解决这个问题?

1 个答案:

答案 0 :(得分:0)

更改此行:

m_i

2将单个字符串作为参数,您无法传递两个参数