用php怎么将网页提交的表单写入到一个文件中?

2024-11-28 18:53:44
推荐回答(5个)
回答(1):

可以使用这样的方法
if($_POST){
$file = $_POST['fname'];
$fp = fopen($file,'wb');
fwrite($fp,"IP Address:$_POST['ipAddress']\r\n");
fwrite($fp,"Port:$_POST['port']\r\n");
fwrite($fp,"none:$_POST['none']\r\n");
fclose($fp);
}
?>
要注意filename的路径,即是否有写文件的权限
表单页html.php:





写入文件 php.php:
$str=$_GET[content];
echo $str."
";
$fp=fopen("html.txt","w");
fwrite($fp,$str);//写入
fclose($fp);
readfile("html.txt");//读取
?>

回答(2):

建议用file_put_content

回答(3):

用$_GET或$_POST的方式

回答(4):

if($_POST){
$file = $_POST['fname'];
$fp = fopen($file,'wb');
fwrite($fp,"IP Address:$_POST['ipAddress']\r\n");
fwrite($fp,"Port:$_POST['port']\r\n");
fwrite($fp,"none:$_POST['none']\r\n");
fclose($fp);
}

?>

简单的写了下,没有做判断什么的。
要注意filename的路径,即是否有写文件的权限

回答(5):

有空的人还真多