ถามเรื่อง Tiny mce หน่อยครับ พอเราติดตั้งแล้ว จะเก็บลงฐานข้อมูลยังไงครับ ต้องสร้างฐานข้อมูลเป็นชนิดไหน
พอเราติดตั้งแล้ว จะเก็บลงฐานข้อมูลยังไงครับ ต้องสร้างฐานข้อมูลเป็นชนิดไหน เป็น 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 : - - - -
Date :
2010-05-09 20:10:07
By :
underzxc
View :
865
Reply :
4
แล้วแต่ครับ ผมเก็บเป็น text นะ
Date :
2010-05-09 21:09:04
By :
เอี่ยว ^^
ยังไม่ได้เลยอาครับ แล้วจะเก็บลง sql ต้องทำไงเหรอครับ
Date :
2010-05-09 21:35:06
By :
underzxc
กลับไปอ่าน https://www.thaicreate.com/php.html ก่อนครับ
Date :
2010-05-10 08:09:55
By :
deawx
อย่าลืมศึกษาเรื่อง Data Type ด้วยนะครับ
Date :
2010-05-10 08:25:50
By :
panyapol
Load balance : Server 00