[php]php 读取一个文本文件把内容导入到文本区域
2010年8月13日星期五 | | |php浏览一个文本文件,导入到文本区域,应该怎么写呢?
<?php
$fileContents=file_get_contents("123.txt");
?>
$fileContents=file_get_contents("123.txt");
?>
<form>
<textareaname="area"><?phpecho$fileContents?></textarea>
</form>
<textareaname="area"><?phpecho$fileContents?></textarea>
</form>
参考:http://www.tctl.com.cn/accp/1472/1474/56996.html
我的QQ空间
php 如何使用 <<<EOD 把大块HTML文本直接赋值给字符串变量
PHP中把大块HTML文本直接赋值给字符串变量的方法<?$ee = ...