|
|
|
ระบบback office อัพข้อมูล แก้ไขข้อมูลแล้ว Error เกี่ยวกับอะไรครับ มีรูปภาพให้ดูครับ |
|
|
|
|
|
|
|
คุณเป็นคนเขียน โค้ด เอง ป่าว ครับ ถ้าใช่ เอาโค้ดมาดูครับ ถ้าไม่ใช่ติดต่อผู้ดูแลระบบ ครับ
|
|
|
|
|
Date :
2012-01-25 12:40:57 |
By :
lootboom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบนี้ครับ.
<script type="text/javascript">
<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
Code (PHP)
<?
if($_POST["name"] != ""){
require("../connect.php");
if($_FILES["pic"]["tmp_name"]){
$pic = $_FILES['pic']['tmp_name'];
$pic_name = $_FILES['pic']['name'];
$pic_size = $_FILES['pic']['size'];
echo $pic_type = $_FILES['pic']['type'];
if($pic_type == "image/pjpeg" || $pic_type == "image/jpeg" || $pic_type == "image/gif" || $pic_type == "image/png"){
copy($pic, "../file/news/".$pic_name);
#========================== resize image ================================#
$images = $pic;
$size = getimagesize($images);
if($size[2] == 1){
$images_orig = imagecreatefromgif($images); //resize รูปประเภท GIF
}else if($size[2] == 2){
$images_orig = imagecreatefromjpeg($images); //resize รูปประเภท JPEG
}else if($size[2] == 3){
$images_orig = imagecreatefrompng($images); //resize รูปประเภท PNG
}
$photoX = imagesx($images_orig);
$photoY = imagesy($images_orig);
$height = 80;
$width = round($height*$size[0]/$size[1]); //คำนวนเพื่อความสมส่วนของรูป
$images_fin = imagecreatetruecolor($width, $height);
imagecopyresampled($images_fin, $images_orig, 0, 0, 0, 0, $width+1, $height+1, $photoX, $photoY);
imagejpeg($images_fin,"../file/news/".$pic_name,95);
imagedestroy($images_orig);
imagedestroy($images_fin);
#========================== สิ้นสุดการ resize ===============================#
}
}else{
$pic_name = "image_not_found.jpg";
}
$name = @mysql_real_escape_string();
$sql = "INSERT INTO news VALUES(null, '$_POST[name]', '$_POST[detail]', '$pic_name')";
if($result = @mysql_query($sql)){
echo "เพิ่มข้อมูลเรียบร้อย ระบบกำลังทำการเปลี่ยนหน้ากรุณารอสักครู่ <br />
หากไม่มีการเปลี่ยนแปลงให้ <a href='palaceManage.php'>คลิกที่นี่</a>";
echo "<meta http-equiv='refresh' content='3;URL=newsManage.php' />";
}else{
unlink("../file/palace/".$pic_name);
echo "<script>alert('เกิดข้อผิดพลาด ไม่สามารถเพิ่มข้อมูลได้')</script>";
echo "<meta http-equiv='refresh' content='0;URL=newsManage.php' />";
}
}else{
?>
<form method="post" action="" enctype="multipart/form-data">
<table width="100%" border="0" cellpadding="1" cellspacing="1">
<tr>
<td width="15%" bgcolor="#FFCAA6">หัวข้อข่าว : </td>
<td width="85%" bgcolor="#FFEDE1"><input type="text" name="name" size="50" value="<?=$_POST["name"]?>" /></td>
</tr>
<tr>
<td width="15%" bgcolor="#FFCAA6">รายละเอียด : </td>
<td width="85%" bgcolor="#FFEDE1"><textarea name="detail"><?=$rec["detail"]?>
</textarea></td>
<script type="text/javascript">
CKEDITOR.replace( 'detail',{
height: '300',
language: 'th',
extraPlugins : 'uicolor',
uiColor :'#006699',
filebrowserBrowseUrl : './editor/ckfinder/ckfinder.html',
filebrowserImageBrowseUrl : './editor/ckfinder/ckfinder.html?Type=Images',
filebrowserFlashBrowseUrl : './editor/ckfinder/ckfinder.html?Type=Flash',
filebrowserUploadUrl : './editor/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Files',
filebrowserImageUploadUrl : './editor/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Images',
filebrowserFlashUploadUrl : './editor/ckfinder/core/connector/php/connector.php?command=QuickUpload&type=Flash'
} );
</script>
</tr>
<tr>
<td width="15%" bgcolor="#FFCAA6">รูปภาพ : </td>
<td width="85%" bgcolor="#FFEDE1"><input type="file" name="pic" />
<span class="style1">*
ไม่ใส่ก็ได้ </span></td>
</tr>
<tr>
<td colspan="2"><div align="center">
<input name="submit" type="submit" value="เพิ่มข้อมูล" />
</div></td>
</tr>
</table>
</form>
<? }?> </td>
</tr>
</table>
<table width="28%" border="0" align="right" cellpadding="0" cellspacing="1">
<tr>
<td width="66%" height="30" rowspan="2" bgcolor="#EDC9ED" class="style17"><div align="center">User :
<?=$_SESSION[userName]?>
</div></td>
<td width="34%" height="14" bgcolor="#EDC9ED" class="style17"><div align="center"><a href="logout.php">Logout</a></div></td>
</tr>
<tr>
<td height="15" bgcolor="#EDC9ED" class="style17"><div align="center"><a href="index.php">กลับหน้าแรก</a></div></td>
</tr>
</table>
|
|
|
|
|
Date :
2012-01-25 14:57:02 |
By :
จอช |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|