Home >Backend Development >PHP Tutorial >Sina online visual editor PHP version_PHP tutorial

Sina online visual editor PHP version_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:59:201751browse

Call
/**
* Sina Blog Editor PHP version encapsulated class calling method
*
​*/
header('Content-Type:text/html;Charset=utf-8;');
include_once('sinaEditor.class.php');
extract($_POST);
extract($_GET);
unset($_POST,$_GET);
$act=='subok' && die("The submitted content is:
".htmlspecialchars($gently_editor));
$editor=new sinaEditor('gently_editor');
$editor->Value='

This is a test!



My blog:
$editor->Create();
?>


Rendering

Download address: Click to download

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/631915.htmlTechArticleCall?php /*** Sina Blog Editor PHP version encapsulation class calling method **/ header('Content-Type: text/html;Charset= utf-8;'); include_once('sinaEditor.class.php'); extract($_POST);...