我正在使用CK编辑器WYSIWYG OK所以当管理员进入页面时,它将在数据库的文本区域中显示图像,所以当他更新文本区域然后提交时,图像标签也提交我想要停止它。 意味着我希望图像标签只是只读/禁用
<textarea name="editor2" id="editor2" rows="1000" cols="80">
<?php echo $event_details_db;?>
<?php if ($event_image_path_db != '' ) { ?>
<img src="uploads/events/<?php echo ($event_image_path_db); ?>">
<?php } ?>
</textarea>