<?php  $htmlData = ”;  if (!empty($_POST['content1'])) {   if (get_magic_quotes_gpc()) {    $htmlData = stripslashes($_POST['content1']);   } else {    $htmlData = $_POST['content1'];   }  } ?> <!doctype html> <html> <head>  <meta charset=”utf-8″ />  <title>KindEditor PHP</title>  <script charset=”utf-8″ src=”kindeditor.js”></script>  <script>   KE.show({    id : ‘content1′,   imageUploadJson : ‘php/upload_json.php’,    fileManagerJson : ‘php/file_manager_json.php’, allowFileManager : true,    afterCreate : function(id) {     KE.event.ctrl(document, 13, function() { […] ↓ Read the rest of this entry…