คอมเม้นท์ ลง ckeditor พอแสดง มันจะแสดง code ด้วย และ smile ก็ไม่แสดงครับ
อันนี้เป็น code ของหน้า comment ใช้อันเดียวกับหน้า entry แต่ entry ไม่มีปัญหา
แต่ comment มันจะขึ้น เป็นแบบนีื้ <p> มันเป็นอะไร</p> ครับ
<?php
session_start();
include("blog.inc.php");
include("paging.inc.php");
include("connect.php");
if($_POST) {
//ตรวจสอบความถูกต้องของข้อมูล
foreach($_POST as $k => $v) {
if(get_magic_quotes_gpc()) {
$v = stripslashes($v);
}
$v = trim(htmlspecialchars($v));
if(empty($v)) {
$errmsg = "กรุณาใส่ข้อมูลให้่ครบด้วยค่ะ";
break;
}
else if(has_rudeword($v)) {
$errmsg = "ไม่อนุญาตให้ใช้คำที่ไม่เหมาะสมค่ะ";
break;
}
$_POST[$k] = $v;
}
if($_POST['captcha'] != $_SESSION['captcha']) {
$errmsg = "ใส่อักขระไม่ตรงกับในภาพ";
}
if($errmsg == "") {
$entry_id = $_POST['entryid'];
$content = $_POST['content'];
$name = $_POST['name'];
$sql = "INSERT INTO comment VALUES
(0, $entry_id, NOW(), '$content', '$name');";
@mysql_query($sql) or die(mysql_error());
$sql = "UPDATE entry SET num_comment = num_comment + 1
WHERE entry_id = $entry_id;";
@mysql_query($sql) or die(mysql_error());
header("Refresh: 1; url=show_entry.php?entryid=$entry_id");
echo " ";
}
else {
echo "<font size=5 color=red>$errmsg<p />
<a href=\"javascript: history.back()\">ย้อนกลับไปแก้ไข</a></font>";
}
exit;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>goodgift: Show Entry</title>
<link rel="stylesheet" href="../css/style.css" />
<script src="../ckeditor/ckeditor.js"></script>
<style type="text/css">
body {
background-color:whitesmoke;
}
.style1 {
font-size: 14pt;
font-family: "Courier New", Courier, monospace;
color: #1D54AF;
}
-->
</style></head>
<body>
<?php
$entry_id=$_GET[entryid];
include("connect.php");
$sql ="SELECT count_click FROM entry WHERE entry_id='$entryid' ";
$result=mysql_db_query($dbname,$sql);
@mysql_query($sql) or die(mysql_error());
$sql = "UPDATE entry SET count_click = count_click + 1
WHERE entry_id = $entry_id;";
@mysql_query($sql) or die(mysql_error());
?>
<?php
$entry_id = $_GET['entryid'];
$sql = "SELECT *,
DATE_FORMAT(date_post, '%d/%m/%Y %T') AS datepost
FROM entry WHERE entry_id = $entryid;";
$result = mysql_query($sql);
$data = mysql_fetch_array($result);
?>
<p /><center>
<div style="width: 950px; background-color: white;">
<table width="98%" bordercolor="white">
<tr>
<td colspan="2" bgcolor="#F7F9FB" style="font-size: 12pt; color: green; text-align: left; padding: 3px; font-weight: bold;">เรื่อง » <font color='red' ><?php echo $data['title']; ?></td>
</tr>
<tr>
<td colspan="2" style="border: solid 1px gray; background-color: white; padding: 5px; text-align: left;"><?php echo mysql_result($result, 0, "content"); ?></td>
</tr>
<tr>
<td align="left" bgcolor="white" style="color: gray;">
<?php
echo "ผู้เขียน: <b><font color='blue' >{$data['user_name']}</b> -
({$data['num_comment']}) ความเห็น -
[{$data['datepost']}] ";
?></td>
<td align="right" bgcolor="white">[<a href=#>แจ้งลบ</a>]</td>
</tr>
<tr>
<td colspan="2" align="left" bgcolor="#F7F9FB"><br />
<hr/>
<br />
<b>:แสดงความเห็น:</b>
<hr /></td>
</tr>
<?php
$current_page = 1;
if(isset($_GET['page'])) {
$current_page = $_GET['page'];
}
$rows_per_page = 10;
$start_row = paging_start_row($current_page, $rows_per_page);
$sql = "SELECT SQL_CALC_FOUND_ROWS *,
DATE_FORMAT(date_post, '%d/%m/%Y %T') AS datepost
FROM comment
WHERE entry_id = $entry_id
ORDER BY date_post DESC
LIMIT $start_row, $rows_per_page;";
$result = mysql_query($sql);
$found_rows = mysql_query("SELECT FOUND_ROWS();");
$total_rows = mysql_result($found_rows, 0, 0);
$total_pages = paging_total_pages($total_rows, $rows_per_page);
while($data = mysql_fetch_array($result)) {
echo "<tr>
<td colspan=2 align=left>{$data['content']}</td>
</tr>
<tr>
<td align=left style=\"font-size: 8pt; color: gray;\">
โดยคุณ: <b><font color='blue' >{$data['name']}</b> - [{$data['datepost']}]
</td>
<td align=right>[<a href=#>แจ้งลบ</a>]</td>
</tr>
<tr>
<td colspan=2><hr /></td>
</tr>";
}
?>
<tr>
<td colspan="2" align="center" bgcolor="white">
<?php
$page_range = 5;
$qry_str = "entryid=$entry_id";
$pagenum = paging_pagenum($current_page, $total_pages,
$page_range, $qry_str);
echo "หน้า: " . $pagenum;
?></td>
</tr>
</table>
</div>
<p align="center"><span class="style1">แสดงความเห็น</span><br />
<form id="form1" name="form1" method="post" action=" <?php echo $_SERVER['PHP_SELF']; ?>">
<table width="700" height="30" border="0" align="center" cellpadding="0" cellspacing="2" bordercolor="#0066FF" bgcolor="white">
<td height="30" align="right">
<textarea cols="121" id="content" name="content" rows="13"class="ckeditor"></textarea>
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'content',{
skin : 'kama',
language : 'en',
extraPlugins : 'uicolor',
uiColor : 'whitesmoke',
height : 250,
width : 750,
toolbar :
[
['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak'],
],
filebrowserBrowseUrl : '/ckfinder/ckfinder.html',
filebrowserImageBrowseUrl : '/ckfinder/ckfinder.html?Type=Images',
filebrowserFlashBrowseUrl : '/ckfinder/ckfinder.html?Type=Flash',
filebrowserUploadUrl : '/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files',
filebrowserImageUploadUrl : '/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images',
filebrowserFlashUploadUrl : '/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Flash'
} );
//]]>
</script>
</p>
<p><img src="captcha.php"/> อักขระในภาพ:
<input type="text" name="captcha" size="4" />
ชื่อ: <input name="name" type="text" id="name" />
<input type="submit" name="Submit" value="ส่งข้อมูล" />
<input name="entryid" type="hidden" id="entryid" value="<?php echo $_GET['entryid']; ?>" />
</p></td>
</table>
</form>
<p> </p>
</body>
</html>Code (PHP)
Tag : PHP, MySQL, Ajax
Date :
2011-05-23 20:46:30
By :
was
View :
992
Reply :
4
ไฟล์ comment กับ entry อยู่ในโฟลเดอร์เดียวกันหรือเปล่าครับ
Date :
2011-05-23 20:51:48
By :
prach_kp
คนละหน้าครับ ที่ว่า อันเดียวกัน คือ ckeditor ครับ รุ่นเดียวกัน
ประวัติการแก้ไข 2011-05-23 21:17:22
Date :
2011-05-23 21:15:22
By :
was
ในไฟล์ comment ไปดูตรงนี่อีกทีนะครับ ประมาณบรรทัดที่ 59 -60
Code (PHP)
<link rel="stylesheet" href="../css/style.css" />
<script src="../ckeditor/ckeditor.js"></script>
น่าจะลองเปลี่ยนดู
Code (PHP)
<link rel="stylesheet" href="css/style.css" />
<script src="ckeditor/ckeditor.js"></script>
หรือ
Code (PHP)
<link rel="stylesheet" href="../../css/style.css" />
<script src="../../ckeditor/ckeditor.js"></script>
Date :
2011-05-23 22:47:29
By :
prach_kp
ไม่ได้ครับ ที่อยู่ ckeditor ถ้าเปลี่ยน แล้วจะหายไป
งี้ ไม่ใช้ editor จะไม่เป็นอะไร แต่อยากใช้ครับ
Date :
2011-05-23 22:59:57
By :
was
Load balance : Server 04