|
|
|
โหลด ckeditor มาใช้ อยากรู้ว่าปรับความสูงของ ckeditor ยังไง แล้วก็ดึงข้อมูลมาอัพเดทแล้วไม่ได้ค่ะ |
|
|
|
|
|
|
|
มี 2 คำถามนะคะ
1. ปรับความสูงยังไงคะ ลอง Search หาดูแล้ว แต่ทำไม่ได้ค่ะ บ้างก็บอกว่าให้แก้ส่วน config.js แต่ก็ไม่รู้จะใส่ตรงไหน งงมากเลยค่ะ
ไฟล์ config.js ค่ะ
Code (JavaScript)
/**
* @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.editorConfig = function( config ) {
// Define changes to default configuration here.
// For the complete reference:
// http://docs.ckeditor.com/#!/api/CKEDITOR.config
// The toolbar groups arrangement, optimized for two toolbar rows.
config.toolbarGroups = [
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker' ] },
{ name: 'links' },
{ name: 'insert' },
{ name: 'forms' },
{ name: 'tools' },
{ name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
{ name: 'others' },
'/',
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align' ] },
{ name: 'styles' },
{ name: 'colors' },
{ name: 'about' }
];
// Remove some buttons, provided by the standard plugins, which we don't
// need to have in the Standard(s) toolbar.
config.removeButtons = 'Underline,Subscript,Superscript';
// Se the most common block elements.
config.format_tags = 'p;h1;h2;h3;pre';
// Make dialogs simpler.
config.removeDialogTabs = 'image:advanced;link:advanced';
};
บ้างก็บอกว่าให้เพิ่มเติมตรงส่วนที่เรียกใช้ อันนี้โค้ดที่เรียกใช้ค่ะ
Code (PHP)
<form action="local_edit_save.php?id=<?=$_GET["id"];?>" name="frmEdit" method="post">
<textarea name="information" cols="50" rows="50" id"information" class="ckeditor"><? echo $objResultlocal['detail']; ?></textarea>
<br><br><br>
<input name="submit" type="submit" value="บันทึกข้อมูล" />
<br><br>
</form>
ต้องใส่โค้ดส่วนสูงตรงไหนคะ ช่วยหน่อยค่ะ
ข้อ 2 คือ หนูดึงข้อมูลจากดาต้าเบส มาเพื่อแก้ไข โดยให้แก้ไขผ่าน ckeditor ค่ะ แก้ไขเสร็จ กดบันทึกแล้วมันก็ไม่ได้อ่ะคะ มันฟ้อง ผิดพลาด กรุณาตรวจสอบข้อมูลอีกครั้ง .. ช่วยดูโค้ดให้หน่อยนะคะ มือใหม่ค่ะ
อันนี้ไฟล์ local_edit_save.php ค่ะ
Code (PHP)
<?
if(
Trim($_POST['information']) =="")
{
echo"<script>alert ('ตรวจสอบข้อมูลอีกครั้ง') ;history.back();</script>";
exit();
}
//*** Insert Record ***//
$hostname = "xx";
$user = "xx";
$password = "xx";
$dbname = "xx";
$tblname = "xx";
mysql_connect($hostname, $user, $password) or die("can not contact");
mysql_select_db($dbname) or die("can not contact");
mysql_query("SET NAMES 'utf8' COLLATE 'utf8_general_ci';");
$strSQL = "UPDATE 'local_information' SET 'detail' = '".$_POST["information"]."' WHERE id='".$_GET["question_id"]."' ";
$objQuery = mysql_query($strSQL);
if($objQuery)
echo "<script>alert ('บันทึกข้อมูลแล้ว') ;user_page.php();<script>";
else
{ echo "<script>alert ('ผิดพลาด กรุณาตรวจสอบข้อมูลอีกครั้ง') ;history.back();</script>";
}
?>
Tag : PHP, JavaScript
|
|
|
|
|
|
Date :
2013-04-22 06:12:47 |
By :
มือใหม่หัดเขียน |
View :
1806 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยหน่อยนะค๊าาาาาา
|
|
|
|
|
Date :
2013-04-22 08:58:24 |
By :
มือใหม่หัดเขียน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<textarea name="description" id="information"></textarea>
<script type="text/javascript">
CKEDITOR.replace( 'information', {
width : '600',
height : '300',
});
</script>
|
|
|
|
|
Date :
2013-04-22 09:12:47 |
By :
teez1232002 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เย้ ได้แล้ว ขอบคุณค่ะ
แต่ยังติดที่ว่า UPDATE ฐานข้อมูลยัังไม่ได้
ผู้รู้ช่วยดูให้หน่อยนะคะ
ขอบคุณล่วงหน้าค่ะ
|
|
|
|
|
Date :
2013-04-22 14:15:30 |
By :
มือใหม่หัดเขียน |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|