|
|
|
ช่วยด้วยครับ เรื่อง ดึงไฟล์รูป จาก data ขึ้นมาโชว์...คือ อัปเดทข้อมูลสมาชิกภาพไม่ขึ้นครับ |
|
|
|
|
|
|
|
คือ อัปเดทข้อมูลสมาชิกภาพไม่ขึ้นครับ แต่ในไพล์ทเก็บไฟล์อัปเดทเปิดดูมีรูปอยู่ ทำไงดีครับ
หน้า edit
Code (PHP)
<form action="update_member.php?member_id=<?=$fetch[member_id]?>" method="post" name="member" enctype="multipart/form-data" onSubmit="return checkmember();" >
<div id="body">
<table width="501" height="164" border="0" align="center" cellpadding="2" cellspacing="0" class="input">
<tr>
<td colspan="22"> </td>
</tr>
<tr>
<td width="132" height="18"><div align="right">รหัสบัตรประชาชน</div></td>
<td width="1"> </td>
<td width="356"><input name="std_id" type="text" id="std_id" value="<?=$fetch[std_id]?>"></td>
</tr>
<tr>
<td height="20" bgcolor="#CECECF"><div align="right">ชื่อ-นามสกุล</div></td>
<td> </td>
<td><input name="name" type="text" id="name" value="<?=$fetch[name]?>"></td>
</tr>
<tr>
<td height="20"><div align="right">ชื่อหมู่บ้าน</div></td>
<td> </td>
<td><div align="left">
<select name="home_num" id="home_num" value="<?=$fetch[home_num]?>">
<option>ชื่อหมู่บ้าน</option>
<option value="บ้านน้ำเที่ยง">บ้านน้ำเที่ยง</option>
<option value="บ้านดงภู่">บ้านดงภู่</option>
</select></td>
</tr>
<tr>
<td height="20"><div align="right">หมู่ที่</div></td>
<td> </td>
<td><select name="moo_num" id="moo_num" value="<?=$fetch[moo_num]?>">
<option>หมู่ที่</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
</select></td>
</tr>
<tr>
<td height="20"><div align="right">เบอร์โทรติดต่อ</div></td>
<td> </td>
<td><input name="phone" type="text" id="phone" value="<?=$fetch[phone]?>"></td>
</tr>
<tr>
<td height="20"><div align="right">เปลี่ยนรูป</div></td>
<td> </td>
<td><input name="image_mem" type="file" id="image_mem"></td>
</tr>
/form>
--------------------------------------------------------
หน้า update
Code (PHP)
<?php
@session_start();
include("config.php");
$folder = 'image_mem/';
$image_mem = $_FILES['image_mem'];
if($image_mem!=""){
if(is_file($image_mem['tmp_name'])){
$rand = rand(1111,9999);
copy($image_mem['tmp_name'],$folder.$rand.$image_mem['name']);
}
$result=mysql_query("update tb_member set std_id ='$_POST[std_id]',name ='$_POST[name]',home_num ='$_POST[home_num]',moo_num ='$_POST[moo_num]',phone ='$_POST[phone]',image_mem ='$rand$image_mem[image_mem]' where member_id='$_GET[member_id]' ");
}else{
$result=mysql_query("update tb_member set std_id ='$_POST[std_id]',name ='$_POST[name]',home_num ='$_POST[home_num]',moo_num ='$_POST[moo_num]',phone ='$_POST[phone]' where member_id='$_GET[member_id]' ");
}
header("location:member_list.php");
?>
-----------------
หน้า แสดงข้อมูล
Tag : PHP, MySQL
|
ประวัติการแก้ไข 2011-03-26 08:52:26
|
|
|
|
|
Date :
2011-03-26 08:47:42 |
By :
aunworking |
View :
829 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
คลองคลิกขวาที่ กากบาต -> Properties ดูว่า path ถูกต้องหรือเปล่าครับ
|
|
|
|
|
Date :
2011-03-26 15:57:13 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
path ถูกต้องครับผมเก็บไว้ใน โฟเดอร์ image_mem มันต้องแก้ยังไงครับ
|
|
|
|
|
Date :
2011-03-27 07:44:07 |
By :
aunworking |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<img src="image_mem/<?=$result["images"];?>" width="99" height="97"> ขอบคุณครับ mr.win แต่ ยังเหมือนเดิมอ่ะครับ
|
|
|
|
|
Date :
2011-03-28 09:44:47 |
By :
aunworking |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|