用PHP读取出的数据怎么显示到网页的文本框中?高分在线等
<html><head><title>无标题文档</title></head><body><palign="center">网页便条</p><hr/><?php$file...
<html>
<head>
<title>无标题文档</title>
</head>
<body>
<p align="center">网页便条 </p>
<hr/>
<?php
$file = 'G:/google/a.txt';
$content = file_get_contents($file); //读取文件中的内容
echo $content;
?>
<form name="form1" method="post" action="">
<div align="center">
<input type="text" name="textbox1"> //怎么显示到这个文本框中
<input type="button" name="btn1" value="保存" onClick="savefile('newfile.txt',this.form.textbox1.value)">
</div>
</form>
</body>
</html> 展开
<head>
<title>无标题文档</title>
</head>
<body>
<p align="center">网页便条 </p>
<hr/>
<?php
$file = 'G:/google/a.txt';
$content = file_get_contents($file); //读取文件中的内容
echo $content;
?>
<form name="form1" method="post" action="">
<div align="center">
<input type="text" name="textbox1"> //怎么显示到这个文本框中
<input type="button" name="btn1" value="保存" onClick="savefile('newfile.txt',this.form.textbox1.value)">
</div>
</form>
</body>
</html> 展开
展开全部
<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>
用定界符试试
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询