以下代码从 HTML 页面接收字符串并将字符串写入文本文件。但是,这样做会在我的浏览器中打开一个页面,其中包含 php 文件的地址。
我怎样才能保留我的 html 页面并防止显示其他页面。
<?php
$name = $_POST['txtFile'];
$tbx = $_POST['tbx'];
$chk = $_POST['chk'];
$txa = $_POST['txa'];
$file_handle = fopen($name, "w");
fwrite($file_handle, $tbx . $chk. $txa);
fclose($file_handle);
?>
发布到此页面的 HTML 表单是:
<form action="troncon.ca/Test/Test1.php"; method="POST" enctype="multipart/form-data" id="dataUpload">
<input type="hidden" name="txtFile" value="">
<input type="hidden" name="tbx" value="">
<input type="hidden" name="chk" value="">
<input type="hidden" name="txa" value="">
</form>