PHP中使用KindEditor
2020-11-16 23:29
YPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
KindEditor是一套开源的HTML可视化编辑器,主要用于让用户在网站上获得所见即所得编辑效果,兼容IE、Firefox、Chrome、
Safari、Opera等主流浏览器。KindEditor使用JavaScript编写,可以无缝的于Java、.NET、PHP、ASP等程序接 合。
KindEditor非常适合在CMS、商城、论坛、博客、Wiki、电子邮件等互联网应用上使用,2006年7月首次发布2.0以
来,KindEditor依靠出色的用户体验和领先的技术不断扩大编辑器市场占有率,目前在国内已经成为最受欢迎的编辑器之一。
Use KindEditor For PHP
1 2 3 460 61Use KindEditor For PHP 5 6 7 8 9 10 48 49 50
savegoods.php
1 php 2 header("Content-type: text/html; charset=utf-8"); 3 $htmlData = ‘‘; 4 if (!empty($_POST[‘content1‘])) { 5 if (get_magic_quotes_gpc()) { 6 $htmlData = stripslashes($_POST[‘content1‘]); 7 } else { 8 $htmlData = $_POST[‘content1‘]; 9 } 10 if(!empty($_POST[‘url1‘])) 11 echo "My_URL:".$_POST[‘url1‘].""; 12 if(!empty($_POST[‘kinds‘])) 13 echo "My_Value:".$_POST[‘kinds‘].""; 14 echo "My_Content:".$htmlData; 15 } 16 ?>另外收得一个加解密类
另外收得一个加解密类
ED code:
1 php 2 function keyED($txt,$encrypt_key) 3 { 4 $encrypt_key = md5($encrypt_key); 5 $ctr=0; 6 $tmp = ""; 7 for ($i=0;$istrlen($txt);$i++) 8 { 9 if ($ctr==strlen($encrypt_key)) $ctr=0; 10 $tmp.= substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1); 11 $ctr++; 12 } 13 return $tmp; 14 } 15 16 //加密码函数 17 function encrypt($txt,$key) 18 { 19 //srand((double)microtime()*1000000); 20 $encrypt_key = md5(rand(0,320000000)); 21 $ctr=0; 22 $tmp = ""; 23 for ($i=0;$istrlen($txt);$i++) 24 { 25 if ($ctr==strlen($encrypt_key)) $ctr=0; 26 $tmp.= substr($encrypt_key,$ctr,1) . 27 (substr($txt,$i,1) ^ substr($encrypt_key,$ctr,1)); 28 $ctr++; 29 } 30 return keyED($tmp,$key); 31 } 32 33 //解密函数 34 function decrypt($txt,$key) 35 { 36 $txt = keyED($txt,$key); 37 $tmp = ""; 38 for ($i=0;$istrlen($txt);$i++) 39 { 40 $md5 = substr($txt,$i,1); 41 $i++; 42 $tmp.= (substr($txt,$i,1) ^ $md5); 43 } 44 return $tmp; 45 } 46 $string = "123456"; 47 //$string = "各位这是我做的加密码文件哦."; 48 49 // 开始加密 encrypt $string, and store it in $enc_text 50 $enc_text = encrypt($string,$key); 51 52 // 开始解密 decrypt the encrypted text $enc_text, and store it in $dec_text 53 $dec_text = decrypt($enc_text,$key); 54 print "原始字符串 : $string
\n"; 55 print "加密后字串 : $enc_text
\n"; 56 print "解密后字串 : $dec_text
\n"; 57 ?>
savegoods.php 显示~
KindEditor 下载地址:http://kindeditor.net/index.php