|
|
|
แอดข้อมูลไม่ลงฐานข้อมูลค่ะ ช่วยหน่อยนะค่ะ หาไม่เจอจริงๆ |
|
|
|
|
|
|
|
อันนี้หน้า add_event.php
Code (PHP)
<form action="add_event2.php" method="post" enctype="multipart/form-data">
<table width="775" border="0" align="center">
<tr>
<td align="left" valign="top">
<div id="mainadd">
<div id="add"><img src="images/add.png" width="24" height="24" align="absmiddle" /> เพิ่มกิจกรรม</div>
<br />
<table width="620" align="center" cellpadding="2" cellspacing="2">
<tr>
<td width="77%" align="left" valign="top"><table width="106%" cellpadding="2" cellspacing="2">
<tr>
<td width="24%">ชื่อกิจกรรม ::</td>
<td width="76%"><input type="text" name="name_ev" id="name_ev" /></td>
</tr>
<tr>
<td>รายละเอียด ::</td>
<td> </td>
</tr>
<tr>
<td colspan="2"><textarea name="detail" cols="70" id="detail" class="ckeditor"></textarea></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td>ใส่รูปอื่นๆ ::</td>
<td> </td>
</tr>
<tr align="left" valign="middle">
<td colspan="2">
<label>
<input name="pic1" type="file" id="pic1" size="70" />
</label></td>
</tr>
<tr align="left" valign="middle">
<td colspan="2">
<input name="pic2" type="file" id="pic2" size="70" /></td>
</tr>
<tr align="left" valign="middle">
<td colspan="2">
<input name="pic3" type="file" id="pic3" size="70" /></td>
</tr>
<tr align="left" valign="middle">
<td colspan="2">
<input name="pic4" type="file" id="pic4" size="70" /></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="2">
<input name="status" type="checkbox" id="status" value="แสดง/ซ่อน" />
แสดง/ซ่อน</td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="2"><div id="buttom"><input type="submit" name="button5" id="button5" value="บันทึก" />
<input type="reset" name="button6" id="button6" value="ยกเลิก" />
</div></td>
</tr>
</table></td>
</tr>
<tr>
<td align="left" valign="top"> </td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</form>
อันนี้หน้า add_event2.php
Code (PHP)
<?
$name_ev=$_POST['name_ev'];
$detail=$_POST['detail'];
$pic1=$_FILES['pic1']['tmp_name'];
$pic1_name=$_FILES['pic1']['name'];
$pic1_size=$_FILES['pic1']['size'];
$pic1_type=$_FILES['pic1']['type'];
$pic2=$_FILES['pic2']['tmp_name'];
$pic2_name=$_FILES['pic2']['name'];
$pic2_size=$_FILES['pic2']['size'];
$pic2_type=$_FILES['pic2']['type'];
$pic3=$_FILES['pic3']['tmp_name'];
$pic3_name=$_FILES['pic3']['name'];
$pic3_size=$_FILES['pic3']['size'];
$pic3_type=$_FILES['pic3']['type'];
$pic4=$_FILES['pic4']['tmp_name'];
$pic4_name=$_FILES['pic4']['name'];
$pic4_size=$_FILES['pic4']['size'];
$pic4_type=$_FILES['pic4']['type'];
$date_today=date("Y-m-d");
if($name_ev="" or $detail=""){
echo "<h2> กรอกข้อมูลไม่ครบ </h2>";
exit();
}
if($_POST["status_ev"] != "")
{
$status_ev=show;
}
else
{
$status_ev=hidden;
}
?>
<?
include "config.php";
$sql = "select * from tb_event order by id_ev desc" ;
$result = mysql_query($sql) ;
$num_result = mysql_num_rows($result) ;
$dbarr = mysql_fetch_row($result) ;
$tb_event_db = $dbarr[0]+1 ; // นำค่า id มาเพิ่มให้กับค่ารหัสสมาชิกครั้งละ1
if($tb_event_db>=100) {
$tb_event_in = "0$tb_event_db" ;
}
else {
if($member_db >=10) {
$tb_event_in = "00$tb_event_db" ;
}
else {
$tb_event_in = "000$tb_event_db" ;
}
}
$id_ev = $yourcode.$tb_event_in; // รหัสสมาชิกเช่น ip0001
$result = mysql_query("insert into tb_event (id_ev,name_ev,detail,status_ev,date)values('$id_ev','$name_ev','$detail','','','','','$status_ev','$date_today')");
$ext = strtolower(end(explode('.', $pic1_name,$pic2_name,$pic3_name,$pic4_name)));
if($ext == "jpg" or $ext == "jpeg" or $ext == "png" or $ext == "gif")
{
$sql = "select max (id_ev) form tb_event";
$result = mysql_db_query($dbname,$sql);
$r=mysql_fetch_array($result);
$id_max=$r[0];
$filename=$id_max.".".$ext;
copy($photo,"photo/$filename");
$sql="update tb_event set pic1='filename',pic2='filename',pic3='filename',pic4='filename' where id_ev='$id_max'";
mysql_db_query($dbname,$sql);
}
//
if($result) {
echo "<center><font size=\"3\" face='MS Sans Serif'><b>บันทึกข้อมูลกิจกรรมเรียบร้อย</b></font></center>";
echo "<meta http-equiv='refresh' content='2; url='event.php'>" ;
}
else{echo"บันทึกข้อมูลลงฐานข้อมูลไม่สำเร็จ";}
?>
คือ ช่วยดูให้หน่อยค่ะว่าทำไมถึงแอดไม่ลงฐานข้อมูล และรบกวนดูว่า เวลาupload ภาพลงฐานข้อมูลพร้อมกันหลายๆๆ อันจะทำยังไงค่ะ
รบกวนหน่อยค่ะ
Tag : PHP, MySQL, CakePHP
|
|
|
|
|
|
Date :
2011-05-30 12:02:47 |
By :
badtzyui |
View :
795 |
Reply :
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตอนที่ทำการ insert into นะครับ จำนวน field มันไม่เท่ากันครับ
Code (PHP)
$result = mysql_query("insert into tb_event (id_ev,name_ev,detail,status_ev,date)values('$id_ev','$name_ev','$detail','','','','','$status_ev','$date_today')");
แก้เป็นCode (PHP)
$result = mysql_query("insert into tb_event (id_ev,name_ev,detail,status_ev,date)values('$id_ev','$name_ev','$detail','$status_ev','$date_today')");
|
|
|
|
|
Date :
2011-05-30 12:51:26 |
By :
Pangpondpuen |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แอดได้แล้ว แต่มันบันทึกข้อมูลไม่หยุดอ่ะค่ะ ช่วยดูตรง อัพโหลดรูปให้หน่อยนะค่ะ
|
|
|
|
|
Date :
2011-05-30 13:09:52 |
By :
badtzyui |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|