Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > PHP > PHP Forum > ถามเรื่อง Tiny mce หน่อยครับ พอเราติดตั้งแล้ว จะเก็บลงฐานข้อมูลยังไงครับ ต้องสร้างฐานข้อมูลเป็นชนิดไหน



 

ถามเรื่อง Tiny mce หน่อยครับ พอเราติดตั้งแล้ว จะเก็บลงฐานข้อมูลยังไงครับ ต้องสร้างฐานข้อมูลเป็นชนิดไหน

 



Topic : 042614



โพสกระทู้ ( 17 )
บทความ ( 0 )



สถานะออฟไลน์




พอเราติดตั้งแล้ว จะเก็บลงฐานข้อมูลยังไงครับ ต้องสร้างฐานข้อมูลเป็นชนิดไหน เป็น text หรือ varchar ผมดูในเว็บ select2web แล้ว
แต่ไม่มีอาครับ ต้องทำไงเนี้ยครับ
Code
<?
include("include/dbconnect.inc");

$subject=$_POST['subject'];
$textarea1=$_POST['textarea1'];
$by=$context['user']['name'];
if ($_POST['save'])
{
if(trim($_FILES["fileUpload"]["tmp_name"]) != "")
{
$images = $_FILES["fileUpload"]["tmp_name"];
$new_images = "Thumbnails_".$_FILES["fileUpload"]["name"];
copy($_FILES["fileUpload"]["tmp_name"],"img/u_img/".$_FILES["fileUpload"]["name"]);
$width=100; //*** Fix Width & Heigh (Autu caculate) ***//
$size=GetimageSize($images);
$height=round($width*$size[1]/$size[0]);
$images_orig = ImageCreateFromJPEG($images);
$photoX = ImagesX($images_orig);
$photoY = ImagesY($images_orig);
$images_fin = ImageCreateTrueColor($width, $height);
ImageCopyResampled($images_fin, $images_orig, 0, 0, 0, 0, $width+1, $height+1, $photoX, $photoY);
ImageJPEG($images_fin,"img/u_img/".$new_images);
ImageDestroy($images_orig);
ImageDestroy($images_fin);
}




$textarea1=addslashes($textarea1);

$insert="insert into news(subject,icon,description,by)value('$subject','$new_images','$textarea1','$by')";
$rs=mysql_query($insert) or die (mysql_error());


}


?>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Word processor example</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- TinyMCE -->
<script type="text/javascript" src="tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
// General options
mode : "textareas",
elements : "textarea1" ,
theme : "advanced",
plugins : "pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,inlinepopups,autosave",

// Theme options
theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : true,

// Example word content CSS (should be your site CSS) this one removes paragraph margins
content_css : "css/word.css",

// Drop lists for link/image/media/template dialogs
template_external_list_url : "lists/template_list.js",
external_link_list_url : "lists/link_list.js",
external_image_list_url : "lists/image_list.js",
media_external_list_url : "lists/media_list.js",

// Replace values for the template plugin
template_replace_values : {
username : "Some User",
staffid : "991234"
}
});
</script>
<!-- /TinyMCE -->

</head>
<body>

<form method="post" enctype="multipart/form-data">
<TABLE cellspacing='20' align='center'>
<TR>
<TD>หัวข้อ :</TD>
<TD><input type='text' name='subject' size='100'></TD>
</TR>
<TR>
<TD>รูป Icon :</TD>
<TD><input name="fileUpload" type="file"></TD>
</TR>
<TR>
<TD colspan='2'><textarea id="textarea1" name="textarea1" rows="15" cols="80" style="width: 80%">
</textarea>
</TD>
</TR>
<TR>
<TD colspan='2'>
<input type="submit" name="save" value="Submit" />
<input type="reset" name="reset" value="Reset" />
</TD>
</TR>
</TABLE>


</form>

</body>
</html>



ทำไมมันไม่เข้าฐานข้อมูลอาครับ มัน error งี้อาครับ รึว่าผมต้องเขียนฟังค์ชั่น ลบตัว " ' ด้วยอาครับ



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2010-05-09 20:10:07 By : underzxc View : 865 Reply : 4
 

 

No. 1

Guest


แล้วแต่ครับ ผมเก็บเป็น text นะ






Date : 2010-05-09 21:09:04 By : เอี่ยว ^^
 


 

No. 2



โพสกระทู้ ( 17 )
บทความ ( 0 )



สถานะออฟไลน์


ยังไม่ได้เลยอาครับ แล้วจะเก็บลง sql ต้องทำไงเหรอครับ
Date : 2010-05-09 21:35:06 By : underzxc
 

 

No. 3



โพสกระทู้ ( 5,149 )
บทความ ( 26 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


กลับไปอ่าน https://www.thaicreate.com/php.html ก่อนครับ
Date : 2010-05-10 08:09:55 By : deawx
 


 

No. 4



โพสกระทู้ ( 2,794 )
บทความ ( 0 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์


อย่าลืมศึกษาเรื่อง Data Type ด้วยนะครับ
Date : 2010-05-10 08:25:50 By : panyapol
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : ถามเรื่อง Tiny mce หน่อยครับ พอเราติดตั้งแล้ว จะเก็บลงฐานข้อมูลยังไงครับ ต้องสร้างฐานข้อมูลเป็นชนิดไหน
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 00
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่