重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
笨方法:
目前创新互联已为1000多家的企业提供了网站建设、域名、虚拟空间、成都网站托管、企业网站设计、和龙网站维护等服务,公司将坚持客户导向、应用为本的策略,正道将秉承"和谐、参与、激情"的文化,与客户和合作伙伴齐心协力一起成长,共同发展。
用JS获取文本框里的值,然后根据这个值获取oid号,提交的时候一起发送给更新处理程序
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'");
这样就可以了。。。