需要用form來提交表格數(shù)據(jù),將HTML改為:
創(chuàng)新互聯(lián)從2013年開始,先為巧家等服務建站,巧家等地企業(yè),進行企業(yè)商務咨詢服務。為巧家企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務解決您的所有建站問題。
form?action="submit.php"?method="post"
pinput?name="user"?size="16"?type="text"?class="input_style"http://p
pinput?type="password"?name="passwd"?size="17"?class="input_style"http://p
pinput?name=""?type="submit"?class="search_an"/
/form
新建一個submit.php:
?php
if(!isset($_POST["user"])?||?!isset($_POST["passwd"]))?die("Forbidden");
$fp?=?fopen("data.txt",?"w+");
$flag?=?fwrite($fp,?$_POST["user"]?.?"|"?.?$_POST["passwd"]?.?"\r\n");
!$flag???die("Error")?:?echo?"Success";
fclose($fp);?
?
把你要保存的數(shù)據(jù)序列化一下,保存到文本中,如果需要修改,則從文本中取出,在反序列化化,在修改后,在序列化一下,保存到文本中。
文本的讀寫 參考fopen 等函數(shù)
?php
if?($fp=fopen("1.txt","a")){
fputs($fp,$REQUEST{'數(shù)據(jù)'});
fclose($fp);
}
?
//記錄返回值
? ? $write_data_a = [
? ? ? ? 'html_url'? =? $getUrl,
? ? ? ? 'ip'? ? = $this-get_real_ip(),
? ? ? ? 'time'? =? date("Y-m-d H:i:s",time()),
? ? ? ? 'res'?? = $response
? ? ];
//轉化為JSON
? ? $write_data_a = json_encode($write_data_a) . '||' . "\n";
? ? $date = date("Y-m-d", time());
//項目路徑目錄,判斷是否存在,不存在則創(chuàng)建
? ? $lujing = "./360_mobile_res_sd";
? ? if(!is_dir($lujing)){
? ? ? ? mkdir(iconv("UTF-8", "GBK", $lujing),0777,true);
? ? }
//文件,判斷是否存在,不存在則創(chuàng)建
? ? $TxtFileName = "./360_mobile_res_sd/" . $date . "_2.txt";
? ? //以讀寫方式打寫指定文件,如果文件不存則創(chuàng)建
? ? if(file_exists($TxtFileName))
? ? {
//存在,追加寫入內容
? ? ? ? file_put_contents($TxtFileName, $write_data_a, FILE_APPEND);
? ? }
? ? else
? ? {
//不存在,創(chuàng)建并寫入
? ? ? ? if( ($TxtRes=fopen ($TxtFileName,"w+")) === FALSE){
? ? ? ? ? ? exit();
? ? ? ? }
? ? ? ? if(!fwrite ($TxtRes,$write_data_a)){ //將信息寫入文件
? ? ? ? ? ? fclose($TxtRes);
? ? ? ? ? ? exit();
? ? ? ? }
? ? ? ? fclose ($TxtRes); //關閉指針
? ? }