笨方法:
目前創(chuàng)新互聯(lián)已為1000多家的企業(yè)提供了網站建設、域名、虛擬空間、成都網站托管、企業(yè)網站設計、和龍網站維護等服務,公司將堅持客戶導向、應用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
用JS獲取文本框里的值,然后根據這個值獲取oid號,提交的時候一起發(fā)送給更新處理程序
html
head
title無標題文檔/title
/head
body
p?align="center"網頁便條?/p
hr/
?php
$file?=?'G:/google/a.txt';
$content?=?file_get_contents($file);?//讀取文件中的內容
echo?HTM
form?name="form1"?method="post"?action=""
div?align="center"
input?type="text"?name="textbox1"?value=$content??//怎么顯示到這個文本框中
input?type="button"?name="btn1"?value="保存"?onClick="savefile('newfile.txt',this.form.textbox1.value)"
/div
/form
HTM;
echo?$content;
?
/body
/html
用定界符試試
input name="username" type="text" value="?=$row['username']?"
$username=$_POST['username'];
update("update `table` set `username`='$username' where `id`='$id'");
這樣就可以了。。。