|
|
|
ถามเรื่องการเขียนโค้ด PHP สำหรับการโพสกระทู้ แสดงความคิดเห็นครับ |
|
|
|
|
|
|
|
echo"<meta http-equiv=\"refresh\"content=\"0;url=event.php \">";//วางไว้ด้านล่างการเพิ่มข้อมูลของหน้า save_comment_event.php
|
|
|
|
|
Date :
12 ต.ค. 2549 08:26:45 |
By :
bts |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คืออยากให้ช่วยแก้โค้ดให้หน่อยไม่รู้ว่าผิดพลาดตรงไหน ขอบคุณค่ะ
<?
$photo=$_FILES['photo']['tmp_name'];
$photo_name=$_FILES['photo']['name'];
$photo_size=$_FILES['photo']['size'];
$photo_type=$_FILES['photo']['type'];
$detail=$_POST['detail'];
$id_title=$_POST['id_title'];
if (!$photo) {
echo "<h3> ERROR : ไม่สามารถ upload รูปภาพได้ค่ะ </h3>";
exit();
}
$ext = strtolower (end (explode(' . ',$photo_name)));
if ($ext =="jpg" or $ext== "jpeg" or $ext == "png" or $ext== "gif") {
//เพิ่มข้อมูลลงตาราง tb_photo
include "connect1.php";
include "setchar.php";
$sql= "insert into tb_photo values (null,' ','$detail','$id_title')";
mysql_db_query($dbname,$sql);
// หา id_photo ที่มากที่สุดของ tb_photo
$sql="select max(id_photo) from tb_photo";
$result=mysql_db_query($dbname,$sql);
$r=mysql_fetch_array($result);
$id_max=$r[0];
$filename=$id_max." . ".$ext;
copy ($photo,"images_large/$filename");
if ($ext == "jpg" or $ext=="jpeg") {
$ori_img=imagecreatefromjpeg($photo);
}else if ($ext=="png") {
$ori_img =imagecreatefrompng ($photo);
}else if ($ext=="gif") {
$ori_img =imagecreatefromgif ($photo);
}
$ori_size = getimagesize($photo);
$ori_w =$ori_size[0];
$ori_h=$ori_size[1];
if ($ori_w>=$ori_h) {
$new_w=100;
$new_h =round (($new_w / $ori_w) * $ori_h);
} else {
$new_h=100;
$new_w =round (($new_h/$ori_h) * $ori_w);
}
$new_img=imagecreatetruecolor ($new_w,$new_h);
imagecopyresized ($new_img, $ori_img ,0,0,0,0,$new_w,$new_h,$ori_w,$ori_h);
if ($ext == "jpg" or $ext=="jpeg") {
imagejpeg($new_img,"images_small/$filename");
} else if ($ext=="png") {
imagepng($new_img,"images_small/$filename");
} else if ($ext=="gif") {
imagegif($new_img,"images_small/$filename");
}
imagedestroy ($ori_img);
imagedestroy ($new_img);
$sql="update tb_photo set name_photo='$filename' where id_photo= '$id_max' ";
mysql_db_query($dbname,$sql);
echo "<h3> Upload รูปภาพเรียบร้อยแล้วค่ะ </h3>";
echo"<a href = ' damin_photo.php?id_title=$id_title' >กลับหน้าหลัก</a>";
mysql_close();
} else {
echo"<h3> ERROR : ไม่สามารถ Upload รูปภาพได้ค่ะ </h3>";
}
?>
|
|
|
|
|
Date :
2009-05-22 00:56:03 |
By :
ตุ๊ก |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
include("config.php");
$sql="select * from p_type";
$result = mysql_query($sql);
while ($data = mysql_fetch_array($result)){
if($data[t_id]==$data3[t_id]){
$s="selected";
}else{
$s="";
}
echo "<option value='$data[t_id]'$s>$data[t_name]</option>" ;
}
?>
|
|
|
|
|
Date :
2009-11-11 00:57:52 |
By :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
if(isset($_GET[cid])){
include("config.php");
$sql="delete from custumer where c_id='$_GET[cid]'";
mysql_query($sql) or die ("ไม่สามารถทำการลบข้อมูลได้");
echo "ได้ทำการลบเรียบร้อยแล้ว";
echo "<meta http-equiv=refresh content=3;url=showcut.php />";
}
?>
|
|
|
|
|
Date :
2009-11-11 00:58:56 |
By :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<?php
include("config.php") ;
$sql="select * from product";
$result = mysql_query($sql);
while ($data = mysql_fetch_array($result)) {
?>
</p>
<p> </p>
<table width="781" height="277" border="0" align="center">
<tr>
<td width="354" rowspan="5"><img src="image1/<?=$data[p_id]; ?> " </td>
<td width="417" height="36"><span class="style29">รุ่น :
<?=$data[p_name ];?>
</span></td>
</tr>
<tr>
<td height="35"><span class="style29">ยี่ห้อ
<?=$data[t_id ];?>
</span></td>
</tr>
<tr>
<td height="35"><p class="style30"><strong>รายละเอียด :
<?=$data[p_text];?>
</strong> </p>
<p class="style30"> </p>
<p class="style30"> </p>
<p class="style30"> </p>
<p class="style30">
<input type="hidden" name="p_id" value="<?=$data[p_id];?>" />
</p></td>
</tr>
<tr>
<td height="24"><span class="style30"><strong>ราคา / หน่วย
<?=$data[p_pice ];?>
บาท</strong></span></td>
</tr>
<tr>
<td height="34"><span class="style30"><strong>จำนวน
<label>
<?php
echo "<select name=item>";
for($i=1; $i<=20; $i++){
echo "<option value = $i>$i</option>";
}
echo "</select>";
?>
</label>
เลือน
<label> <a href="ordercut.php?p_id=$data[p_id]">
<input type="image" name="Submit" src="image/cart.gif" />
</a> </label><a href="search.php">
ค้นหาข้อมูลสินค้า</a>
</strong></span></td>
</tr>
</table>
<p> </p>
<p align="center">
<?php } ?>
|
|
|
|
|
Date :
2009-11-11 01:01:16 |
By :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เช็คฟร์อม
<script language="javascript" src="checkfrom.js"></script>
<form action="" method="post" enctype="multipart/form-data" name="frmAddpro" onSubmit="return chk_addpro();">
|
|
|
|
|
Date :
2009-11-11 01:05:27 |
By :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
^_^
|
|
|
|
|
Date :
2011-03-09 01:55:15 |
By :
ECq |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2011-03-26 16:39:24 |
By :
namkang |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยากได้โค๊ตที่แสดงความคิดเห็น ของ php อ่ะค่ะ ช่วยหน่อยค่ะ
|
|
|
|
|
Date :
2011-08-30 09:47:52 |
By :
ลูกแก้ว |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|