主题:  PHP问题.....

月幻

职务:普通成员
等级:1
金币:0.0
发贴:35
#12002/9/21 18:07:58
我有一款PHP的日记程序。。。支持语音的..程序由姑嗒哆友情提供.....

可是程序本身在日记写入的时候过滤了字串..........(我想让它支持HTML标签。。)


怎么把过滤字符的语句注掉........



月幻

职务:普通成员
等级:1
金币:0.0
发贴:35
#22002/9/21 18:13:50
忘记了程序代码~~~~呵呵~~~~~....

程序代码如下
.............................................................................................................................
error_reporting(7);
if( $_GET['para'] ){
    $para = $_GET['para'];
}else{
    $para = $_POST['para'];
}
if( $_GET['y'] ){
    $y = $_GET['y'];
    $m = $_GET['m'];
    $d = $_GET['d'];
}else{
    $y = $_POST['y'];
    $m = $_POST['m'];
    $d = $_POST['d'];
}

if( $debug ){
print("GET: ");
print_r($_GET);
print("
POST: ");
print_r($_POST);
print("
COOKIE: ");
print_r($_COOKIE);
print("
");
}
/*......................................................*/
/* */
/*         本程序由姑嗒哆友情提供       */
/*         ☆ ★ 日語入门學園 ★ ☆      */
/*        日记2002(修改版)vXP1.14      */
/*   www.5emoonrain.com   */
/* */
/*......................................................*/
header("content-Type: text/html; charset=gb2312");
$upw="DD";
//请勿修改以下部分
if(file_exists("install.php")) unlink("install.php");
if($para=="menu"){
menu();
header("location:$jump");
exit;
}
?>



☆★日語入门學園 - 管理页面 ★ ☆[ <A HREF="http://5emoonrain.com]</title" TARGET=_blank>5emoonrain.com]</title</A>><br><style type="text/css"><br>body {margin:10 200; background:#fff8fd; color:#663366; font:12px/17px arial}<br>a:visited,a:link {text-decoration:none; color:#663366}<br>a:hover{color:ff6699}<br>hr{border:1px #EBD8EB solid; width:100%; height:1px}<br>table{font:12px/17px arial}<br>input{background:#FFFBFD; font:12px/16px arial; border:1px #EBD8EB solid; height:20px; color:#663366}<br>textarea{background:#FFFBFD;font:12px/14px arial;border:1px #EBD8EB solid;color:#663366;width:100%}<br>#button{background:#EBD8EB; border-style:outset; line-height:16px}<br>#title{background:#EBD8EB; border:1px #EBD8EB solid; font-weight:bold; line-height:12px; font-family:verdana,arial; padding:3; letter-spacing:1}<br>#checkbox{border:0}<br></style><br><script language="javascript"><br><?PHP if($para!="删除日记" && $para!="删除音频"): ?><br>function today(){<br> theform=updateform;<br> var today=new Date();<br> m=today.getMonth()+1;<br> if(m<10) m="0"+m;<br> theform.y.value=today.getYear();<br> theform.m.value=m;<br> theform.d.value=today.getDate();<br>}<br>function check(){<br> theform=updateform;<br> if(theform.y.value==""){<br> alert("请填写年!");<br> theform.y.focus();<br> return false;<br> }<br> if(theform.m.value==""){<br> alert("请填写月!");<br> theform.m.focus();<br> return false;<br> }<br> if(theform.d.value==""){<br> alert("请填写日!");<br> theform.d.focus();<br> return false;<br> }<br><?php if($para=="更新日记"): ?><br> if(theform.content.value=="" && theform.file.value==""){<br> y=theform.y.value;<br> m=theform.m.value;<br> d=theform.d.value;<br> msg="要删除"+y+"年"+m+"月"+d+"日的日记么?";<br> delfile='update.php?para=删除&delfile[]='+y+'-'+m+'/'+d+'&y='+y+'&m='+m;<br> if(confirm(msg)) location=delfile;<br> return false;<br> }<br><?php endif; ?><br>}<br><?php endif; ?><br><?php if($para=="删除日记" || $para=="删除音频"): ?><br>function delcheck(theform){<br> var Check="";<br> for(i=0;i<theform.elements.length;i++){<br> if(theform.elements[i].checked == true){<br> Check=1;<br> break;<br> }<br> }<br> if(Check!=1){<br> alert("没有选择要删除的文件!");<br> return false;<br> }<br> if(!confirm('真要删除吗?')) return false<br>}<br>var all;<br>function selectall(theform){<br> if(all!=1) all=1;<br> else all=0;<br> for(i=0;i<theform.elements.length;i++){<br> if(all==1) theform.elements[i].checked = true;<br> else theform.elements[i].checked = false;<br> }<br>}<br><?php endif; ?><br></script><br></head><br><br><body><br><?php<br>/* 身份检查 */<br>checkright($_COOKIE['pw'],$upw);<br>?><br><form name="updateform" action="<?php echo $PHP_SELF ?>" enctype="multipart/form-data" method="post"><br><?php<br>if($para=="提交日记"){<br> $dir=$y."-".$m;<br> $diary=$dir."/".$d;<br> //$real="real/".$dir."-".$d.".rm";<br><br> if($_FILES['file']['tmp_name']){<br> if(!is_dir($dir)) mkdir($dir,0700);<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->copy($_FILES['file']['tmp_name'],$diary);<br> menu();<br> }<br> elseif(!empty($_POST['content'])){<br> if(!is_dir($dir)) mkdir($dir,0700);<br> $fp=fopen($diary,"w");<br> fputs($fp,stripslashes($_POST['content']));<br> fclose($fp);<br> menu();<br> }<br> if($_FILES['audioresource']['tmp_name']){<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->$suffix = substr(strrchr($_FILES['audioresource']['name'], "."), 1);<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->$suffix = strtolower($suffix);<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->switch ($suffix){//格式判断<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->case "rm":<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->case "asf":<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->case "wma":<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->case "mp3":<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->$audio = "audio/".$dir."-".$d.".".$suffix;<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->copy($_FILES['audioresource']['tmp_name'],$audio);<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->break;<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->}<br><!--ubbcodetab-->    <!--/ubbcodetab-->}<br>}<br><br>elseif($para=="删除"){<br> delfile($_POST['delfile']);<br>}<br><br>if($para=="更新日记"){<br> checktime();<br>?><br><br><br><div id=title>请填写日记内容或者直接上传日记文件</div><br><textarea name="content" rows=6><?php showdiary($y."-".$m."/".$d) ?></textarea><br><input type=file name="file" style="width:100%"><br><br><br><div id=title>上传rm,wma,mp3,asf格式音频文件</div><br><input type=file name="audioresource" style="width:100%"><br><br><br><br><input id=button type=submit name="para" value="提交日记" onclick="return check(this.form)"> <br><input id=button type=reset value="重新填写"><br><?php<br>}<br><br>elseif($para=="删除日记" || $para=="删除音频"){<br> fdelfile();<br>}<br>else{<br> if(empty($y)) $y=date(Y);<br> if(empty($m)) $m=date(m);<br> if(empty($d)) $d=date(j);<br> checktime();<br>?><br> <p align=center><input type=submit name="para" value="更新日记" onclick="return check()"> <input type=submit name="para" value="删除日记" onclick="return check()"> <input type=submit name="para" value="删除音频"><br><br> </p><br><?php<br>}<br>?><br><br><!--bottom--><br><hr><br><input type=button value="返回前页" onclick="history.back()"><br><input type=button value="察看日记" onclick="location='index.php'"><br><input type=button value="登出" onclick="documents.cookie='pw=';location='<?php echo $PHP_SELF ?>'"><br><hr><br><div align=center><br>Copyright ©1999-2002 KJbin Enterprises Limited.<br><br>程序制作:つきの泪 官方网页:<a href="http://www.5emoonrain.com" target=_blank>www.5emoonrain.com</a><br><br>电邮:<a href="mailto:info@5emoonrain.com">info@5emoonrain.com</a> QQ:790484<br></div><br></form><br></body><br></html><br><br><?php<br>/* 生成日记列表 */<br>function menu(){<br> global $y,$m;<br> $dir="$y-$m";<br> $menu="menu/$dir";<br> if(is_dir($dir)){<br> $handle=dir($dir);<br> while($diary=$handle->read()){<br> if(!is_dir($dir."/".$diary)) $menus[]=$diary;<br> }<br> $handle->close();<br> if(count($menus)>0){<br> sort($menus);<br> $menus=implode(",",$menus);<br> $fp=@fopen($menu,"w") or die("无法生成日记列表");<br> @fputs($fp,$menus) or die("无法生成日记列表");<br> fclose($fp);<br> }else{<br> rmdir($dir);<br> if(file_exists($menu)) @unlink($menu);<br> }<br> }else{<br> if(file_exists($menu)) @unlink($menu);<br> }<br>}<br><br>/* 确定时间 */<br>function checktime(){<br>?><br><div id=title><br>请确定操作时间 <br><input name="y" size=4 value="<?php echo $GLOBALS[y] ?>"> 年 <input name="m" size=2 value="<?php echo $GLOBALS[m] ?>"> 月 <input name="d" size=2 value="<?php echo $GLOBALS[d] ?>"> 日  <a href="javascript:today()">今天</a><br></div><br><?php<br>}<br><br>/* 显示日记内容 */<br>function showdiary($file){<br> if(file_exists($file)){<br> $fp=fopen($file,"r");<br> $content=fread($fp,filesize($file));<br> fclose($fp);<br> echo unword($content);<br> }<br>}<br>/* 删除 */<br>function delfile($delfiles){<br> for($i=0; $i<count($delfiles); $i++){<br> $delfile=$delfiles[$i];<br> if(file_exists($delfile)) unlink($delfile);<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->// 删除指向文件<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->/*if(eregi("^audio/",$delfile)){<br> $audio=$delfile;<br> }else{ // 用来修补漏洞??这段没动<br> $audioname=eregi_replace("/","-",$delfile);<br> $audio="real/".$audioname.".rm";<br> if(file_exists($audio)) unlink($audio);<br> }*/<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->$suffix = substr(strrchr($delfile, "."), 1);<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->switch ( $suffix ){<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->case 'rm':<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->$meta='ram';<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->break;<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->case 'asf':<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->$meta='asx';<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->break;<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->case 'wma':<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->$meta='wax';<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->break;<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->case 'mp3':<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->$meta='m3u';<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->break;<br><!--ubbcodetab-->    <!--/ubbcodetab--><!--ubbcodetab-->    <!--/ubbcodetab-->}<br> if(file_exists("audio/meta/play.$meta")) unlink("audio/meta/play.$meta");<br> }<br> menu();<br>}<br><br>function fdelfile(){<br> global $y,$m,$para;<br> if($para=="删除音频"){<br> $dir="real";<br> $row=2;<br> $type="请选择要删除的音频文件";<br> }else{<br> $dir=$y."-".$m;<br> $row=5;<br> $type="请选择要删除的".$y."年".$m."月的日记";<br> }<br> $handle=dir($dir);<br> echo "$type\r\n";<br>?><br> <input type=hidden name="y" value="<?php echo $y ?>"><br> <input type=hidden name="m" value="<?php echo $m ?>"><br> <table border=1 width=100% cellpadding=0 cellspacing=0><br> <tr><br><?php<br> $i=0;<br> while($thefile=$handle->read()){<br> $file=$dir."/".$thefile;<br> if(filetype($file)=="file"){<br> if(is_int($i/$row)) echo "</tr>\r\n<tr>\r\n";<br>?><br> <td><br> <input id=checkbox type=checkbox name="delfile[]" value="<?php echo $file ?>"><br> <a href=<?php echo $file ?> target=_blank><?php echo $thefile ?></a><br> </td><br><?php<br> $i++;<br> }<br> }<br> $handle->close();<br>?><br> </tr><br> </table><br> <p align=center><br> <input id=button type=submit name="para" value="删除" onclick="return delcheck(this.form)"> <br> <input id=button type=button value="全选/全否" onclick="selectall(this.form)"><br> </p><br><?php<br>}<br>/* 身份检查 */<br>function checkright($pw,$upw){<br> if($pw!=$upw){<br>?><br><style><br>body { margin-top:200px; text-align:center }<br></style><br>请输入管理员密码 <br><input type=password name="pw"> <br><input type=button id=button value="登入" onclick="documents.cookie='pw='+pw.value; location.reload()"><br></body><br></html><br><?php<br> exit;<br> }<br>}<br>#####<br>function unword($word){<br>$word=ereg_replace("<br>","\n",$word);<br>return $word;<br>}<br>?> </div> <div class='edit_last'> <p align="right"> <br /> </p> </div> <div class="qianming"></div> </div> </td> </tr> <tr class='tr1'> <td valign="top" width='18%' class='threadUser'> <a target="_blank" href="http://srxSCw.5d.cn/"><img class="small" src="http://res.5d.cn/heads/noface.gif"/><br/>5D雷锋</a><br /> 职务:普通成员<br /> 等级:3<br /> 金币:10.0<br /> 发贴:1008<br/> </td> <td valign="top" class='threadInfo'> <div class='content_main'> <div class='edit'> <ul> <li><a id="_ctl0__ctl0_main_main_rptPosts__ctl2_btnQuote" href="/User/Posting.aspx?action=quote&forum=31&id=487852&id2=507884&id3=3">引用</a></li> <li></li> <li></li> </ul> </div> <div class='time'><span>#3</span>2002/10/5 20:47:28</div> <div class='content_c'> 这里好像没有过滤的代码!<br> </div> <div class='edit_last'> <p align="right"> <br /> </p> </div> <div class="qianming"></div> </div> </td> </tr> <tr class=''> <td valign="top" width='18%' class='threadUser'> <a target="_blank" href="http://deathcult.5d.cn/"><img class="normal" src="http://res.5d.cn/heads/noface.gif"/><br/>helmet</a><br /> 职务:版主<br /> 等级:4<br /> 金币:10.0<br /> 发贴:1559<br/> </td> <td valign="top" class='threadInfo'> <div class='content_main'> <div class='edit'> <ul> <li><a id="_ctl0__ctl0_main_main_rptPosts__ctl3_btnQuote" href="/User/Posting.aspx?action=quote&forum=31&id=487852&id2=509562&id3=4">引用</a></li> <li></li> <li></li> </ul> </div> <div class='time'><span>#4</span>2002/10/7 13:57:15</div> <div class='content_c'> 有个替换<br>的:<br><br>$word=ereg_replace("<br>","\n",$word);<br><br> </div> <div class='edit_last'> <p align="right"> <br /> </p> </div> <div class="qianming"><A HREF="http://www.bang5.com" TARGET=_blank>http://www.bang5.com</A></div> </div> </td> </tr> </table> <div id="_ctl0__ctl0_main_main_Pager2" class="pages"><div class="quotes">每页显示15条 1/1<a disabled="true" class="disabled"><<</a><a disabled="true" class="disabled"><</a><span class="current">1</span><a disabled="true" class="disabled">>></a><input type="input" class="input" /><input type="button"/ class="go" value="GO" onclick="if(this.previousSibling.value && !isNaN(this.previousSibling.value)){location.href='?forum=31&id=487852&page={0}'.replace('{0}',this.previousSibling.value)}"></div></div> <table id="_ctl0__ctl0_main_main_QuickPostForm" class="FastRe mainTable"> <tr> <td valign="top" style="width:150px;"> <b></b> </td> <td valign="top"> <b>在 回复主题:PHP问题.....</b> </td> </tr> <tr> <td align="right"> </td> </tr> <tr> <td valign="top" nowrap="nowrap" align="right"> <b>正文:</b> </td> <td valign="top" class="fck"> <script type='text/javascript' src="/ubbeasy/UbbFun_v2.0.js" charset="gb2312" language='javascript'></script> <link href="/ubbeasy/i5D_editor.css" rel="stylesheet" type="text/css" /> <div id="ubbeditor"> <table class="btn_tools"> <tr> <td><img onclick="ubbFormat('b','要使用粗体的文字',EditMethod)" src="/ubbeasy/images/ico_Bold.gif" alt="加粗" /></td> <td><img onclick="ubbFormat('u','要使用下划线的文字',EditMethod)" src="/ubbeasy/images/ico_Underline.gif" alt="下划线" /></td> <td><img onclick="S(true,'SPC');" onmouseout="H(500,'SPC')" src="/ubbeasy/images/ico_color.gif" alt="文本颜色" /><table id="SPC" onmouseover="S(true,'SPC')" onmouseout="H(500,'SPC')" class="colorpalette" style="display:none;"> <tr> <td><a href="javascript:void(0);" onclick="chcolor('Black',EditMethod);H(0,'SPC');" style="background:Black"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> <td><a href="javascript:void(0);" onclick="chcolor('White',EditMethod);H(0,'SPC');" style="background:White"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> <td><a href="javascript:void(0);" onclick="chcolor('Red',EditMethod);H(0,'SPC');" style="background:Red"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> <td><a href="javascript:void(0);" onclick="chcolor('Yellow',EditMethod);H(0,'SPC');" style="background:Yellow"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> </tr> <tr> <td><a href="javascript:void(0);" onclick="chcolor('Gray',EditMethod);H(0,'SPC');" style="background:Gray"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> <td><a href="javascript:void(0);" onclick="chcolor('Silver',EditMethod);H(0,'SPC');" style="background:Silver"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> <td><a href="javascript:void(0);" onclick="chcolor('Maroon',EditMethod);H(0,'SPC');" style="background:Maroon"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> <td><a href="javascript:void(0);" onclick="chcolor('Olive',EditMethod);H(0,'SPC');" style="background:Olive"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> </tr> <tr> <td><a href="javascript:void(0);" onclick="chcolor('Lime',EditMethod);H(0,'SPC');" style="background:Lime"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> <td><a href="javascript:void(0);" onclick="chcolor('Aqua',EditMethod);H(0,'SPC');" style="background:Aqua"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> <td><a href="javascript:void(0);" onclick="chcolor('Blue',EditMethod);H(0,'SPC');" style="background:Blue"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> <td><a href="javascript:void(0);" onclick="chcolor('Fuchsia',EditMethod);H(0,'SPC');" style="background:Fuchsia"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> </tr> <tr> <td><a href="javascript:void(0);" onclick="chcolor('Green',EditMethod);H(0,'SPC');" style="background:Green"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> <td><a href="javascript:void(0);" onclick="chcolor('Teal',EditMethod);H(0,'SPC');" style="background:Teal"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> <td><a href="javascript:void(0);" onclick="chcolor('Navy',EditMethod);H(0,'SPC');" style="background:Navy"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> <td><a href="javascript:void(0);" onclick="chcolor('Purple',EditMethod);H(0,'SPC');" style="background:Purple"><img src="/ubbeasy/images/alpha.gif" alt="" /></a></td> </tr> </table></td> <td><img onclick="ubbFormat('center','居中对齐',EditMethod)" src="/ubbeasy/images/ico_center.gif" alt="居中" /></td> <td><img onclick="churl(EditMethod)" src="/ubbeasy/images/ico_link.gif" alt="插入链接" /></td> <td><img onclick="ubbFormat('Google','要搜索的关键词',EditMethod)" src="/ubbeasy/images/ico_googlelink.gif" alt="建立Google搜索链接" /></td> <td><img onclick="ubbFormat('img','要插入的图片的URL地址',EditMethod)" src="/ubbeasy/images/ico_image.gif" alt="插入图片" /></td> <td><img onclick="ubbFormat('quote','',EditMethod)" src="/ubbeasy/images/ico_quote.gif" alt="引用文本" /></td> </tr> </table> <DIV class=editor_text> <textarea onmouseup="checkMessage();" onkeyup="checkMessage();" onblur="checkMessage();" style="WIDTH: 600px; HEIGHT: 150px" name="Message" id="smallEditer" ></textarea> <div id='editor_status'> </div> </div> <div class="btn_face"> <img onclick="chFace(':e_han')" src="/ubbeasy/face/e_han.gif" alt="汗" /> <img onclick="chFace(':e_xin')" src="/ubbeasy/face/e_xin.gif" alt="喜欢" /> <img onclick="chFace(':e_xiao')" src="/ubbeasy/face/e_xiao.gif" alt="骄傲的笑" /> <!--<img onclick="chFace(':e_ganga')" src="/ubbeasy/face/e_ganga.gif" alt="尴尬" /> <img onclick="chFace(':e_shuijiao')" src="/ubbeasy/face/e_shuijiao.gif" alt="困了" />--> <img onclick="chFace(':e_ku')" src="/ubbeasy/face/e_ku.gif" alt="哭" /> <img onclick="chFace(':e_cool')" src="/ubbeasy/face/e_cool.gif" alt="酷!" /> <img onclick="chFace(':e_nu')" src="/ubbeasy/face/e_nu.gif" alt="愤怒" /> <img onclick="chFace(':e_heixian')" src="/ubbeasy/face/e_heixian.gif" alt="黑线" /> <img onclick="chFace(':e_wen')" src="/ubbeasy/face/e_wen.gif" alt="什么?" /> <img onclick="chFace(':e_shan')" src="/ubbeasy/face/e_shan.gif" alt="猥琐" /> <img onclick="chFace(':e_touxiao')" src="/ubbeasy/face/e_touxiao.gif" alt="偷笑" /> <img onclick="chFace(':e_wuyu')" src="/ubbeasy/face/e_wuyu.gif" alt="无语" /> <img onclick="chFace(':e_yun')" src="/ubbeasy/face/e_yun.gif" alt="晕" /> <img onclick="chFace(':e_chijing')" src="/ubbeasy/face/e_chijing.gif" alt="吃惊" /> <img onclick="chFace(':e_youhuo')" src="/ubbeasy/face/e_youhuo.gif" alt="诱惑" /> <br /> <IMG onclick='chFace(":)")' alt=smile src="/ubbeasy/face/smile.gif" border=0> <IMG onclick='chFace(":(")' alt=frown src="/ubbeasy/face/frown.gif" border=0> <IMG onclick='chFace(":o")' alt=redface src="/ubbeasy/face/redface.gif" border=0> <IMG onclick='chFace(":D")' alt=biggrin src="/ubbeasy/face/biggrin.gif" border=0> <IMG onclick='chFace(";)")' alt=wink src="/ubbeasy/face/wink.gif" border=0> <IMG onclick='chFace(":rolleyes:")' alt=rolleyes src="/ubbeasy/face/rolleyes.gif" border=0> <IMG onclick='chFace(":mad:")' alt=mad src="/ubbeasy/face/mad.gif" border=0> <IMG onclick='chFace(":eek:")' alt=eek src="/ubbeasy/face/eek.gif" border=0> <span class='cf_closesmile'><input class='cbox' type='checkbox' id='closesmile'/>禁止笑脸转换</span> </div> <script type='text/javascript' language='javascript' > //if(typeof(SetContentId)=="function") if(typeof(SetContentId)=='function') { SetContentId('smallEditer'); } </script> <script type='text/javascript' language='javascript' src='http://www.5d.cn/script/ValidatorScript.js' ></script> </div> <br/> <b>提示:</b>按 Ctrl+Enter 快速提交<br /> </td> </tr> <tr> <td colspan="2" align="center"> <input type="submit" name="_ctl0:_ctl0:main:main:btnSubmit" value=" 快速回复 " id="_ctl0__ctl0_main_main_btnSubmit" accesskey="A" />    <input type="submit" name="_ctl0:_ctl0:main:main:_ctl12" value=" 切换到完整回复 " /></td> </tr> </table> </div> </form> <script type="text/javascript"> $('a.delete').click(function(){ return confirm("删除后将不可还原,请再次确认"); }); var init_Script = function() { try { var o = GetContent(); o.style.width = '100%'; } catch (e) { } }; init_Script(); $('#aspnetForm').keyup(function(e) { if (e.ctrlKey && e.keyCode == 13) { $('#_ctl0__ctl0_main_main_btnSubmit').click(); } }); </script> <div style='margin:2px auto;border:#ccc solid 1px;text-align:center; width:972px;'> <script type="text/javascript"> google_ad_client = "pub-4239440736845119"; /* 728x90, 创建于 08-9-8 */ google_ad_slot = "0765827036"; google_ad_width = 728; google_ad_height = 90; </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script> </div> </div> </div> <div class="i5D_footer"><a href="#">关于我们</a> | <a href="#">免责声明</a> | <a href="#">合作联系</a> | <a href="#">版权信息</a> | <a href="#">友情链接</a> | <a href="http://www.miibeian.gov.cn/CX/main.jsp"> ICP许可证:浙ICP备05007613号</a><br /> ©1999-2008 5D.cn. 版权所有 <br /> <a href="http://ulic.baidu.com/client/clientDetailCerInfo.do?id=914" target="_blank"> <img src="http://ulic.baidu.com/unlicpic/11448_green.gif" border="0" alt="百度大联盟认证绿色会员" /></a> </div> </body> </html>