我開發了一個文本框,並試圖將此數據寫入文本文件。 PHP代碼正在生成文件,但數據未被寫入。下面 是我的代碼:將文本框中的數據寫入文本文件
<html>
<body>
<form name="form" method="post">
<input type="text" name="text_box" size="50"/>
<input type="submit" id="search-submit" value="submit" />
<?
[email protected]$_POST["text_box"];
$myFile = "t.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
fwrite($fh,$a);
fclose($fh);
?>
沒有幫助 – Pink 2012-01-14 06:07:29