PDA

View Full Version : استفاده از text editor



jalaladdin
سه شنبه 03 آبان 1390, 21:37 عصر
من این texteditor از این وب سایت دانلود کردم چگونه در صفحه ارسال مطلب از این text editorدر صفحه ارسال مطلب استفاده کنم
کد:
http://phphtmledit.com

jalaladdin
پنج شنبه 05 آبان 1390, 07:21 صبح
راهنمای فرمائید

iker-casillas
پنج شنبه 05 آبان 1390, 21:27 عصر
اگه خیلی مهم نیست یه لینک بهت میدم برو text editor دیگه ای بگیر

jalaladdin
پنج شنبه 05 آبان 1390, 22:18 عصر
من یک text editor میخوام که قسمت آپلود فایل داشته باشد

Mr.Moghadam
پنج شنبه 05 آبان 1390, 23:21 عصر
http://phphtmledit.com/document/index.htm


//Step 1: Register Editor component to your page
<?php require_once "cuteeditor_files/include_CuteEditor.php" ?>
<html>
<body>
<form id="form1" method="POST">
<?php
//Step 2: Create Editor object.
$editor=new CuteEditor();
$editor->Text="Type here";
//Step 3: Set a unique ID to Editor
$editor->ID="Editor1";
//Step 4: Render Editor
$editor->Draw();
?>
</form>
</body>
</html>