从表单的<TEXTAREA>中读取数据存入数组转变后再输出

2010年8月13日星期五 | | |

读取<TEXTAREA>中的数据:
 <?php
$v   =   explode( "\n ",$_POST[a]);
print_r($v);
?>
<form   method= "post ">
<textarea   name= "a "> </textarea>
<input   type= "submit ">
</form>
 
参考:http://topic.csdn.net/t/20061108/14/5142211.html
 
输出数据:
<?
$string=arry(
"string1",
"string2",
"string3",
"string4"
);
?>
<textarea name="content" id="Content" rows="24" cols="25"><?php var_dump($string) ?></textarea>
 
或者:
 [php]<?php
$string=array("string11","string12","string13","string14");
?>
<textarea name=\"content\" id=\"content\" rows=\"24\" cols=\"25\" >
<?php for ($i=0;$i<count($string);$i++)
{
echo  $string[$i]."\n";
}?>
</textarea>
[/php]
 
参考:http://bbs.phpchina.com/thread-48484-1-1.html
我的QQ空间
php 读取一个文本文件把内容导入到文本区域
php浏览一个文本文件,导入到文本区域,应该怎么写呢?<?php$...
 

0 评论:


所有文章收集于网络,如果有牵扯到版权问题请与本站站长联系。谢谢合作![email protected]