|
|
|
อยากถามเพ่เพ่เรื่อง การเก็บรูปในฐานข้อมูลฮะ คือ ป๋ม อยากทราบว่าเราจะเก็บรูปในฐานข้อมูลได้อย่างไรคือในฐานข้อมูลป๋มทำไว้ |
|
|
|
|
|
|
|
1.ฟร์อม
<form action="add_to_mysql.php" method="post" enctype="multipart/form-data" name="form1" target="_parent">
<table width="200" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>เลือกไฟล์</td>
<td><input name="f_file" type="file" id="f_file"></td>
</tr>
<tr>
<td>ใส่คอมเม้นท์</td>
<td><textarea name="f_comment" id="f_comment"></textarea></td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="ส่งเลย">
<input type="reset" name="Reset" value="เอาใหม่"></td>
</tr>
</table>
</form>
2.จัดเก็บลง ฐานข้อมูล
<?
mysql_connect("localhost","root","")or die("ติดต่อฐานข้อมูลไม่ได้");
mysql_query("use training")or die("ไม่สามารถเข้าใช้ ฐานข้อมูล ได้");
$f_name=$HTTP_POST_FILES['f_file']['name'];
"<br>".$f_type=$HTTP_POST_FILES['f_file']['type'];
"<br>".$f_size=$HTTP_POST_FILES['f_file']['size'];
"<br>";
//
$data=fread(fopen($f_file,"r"),filesize($f_file));
$data=addslashes($data);
$f_comment=$_POST['f_comment'];
//$mm=filesize($f_file) / 1024;
"<br>".$f=strlen($f_name)."<br>";
$s=$f-3;
$suname_file=substr($f_name,$s,3);
$name_file=substr($f_name,0,$s-1);
$sql="insert into tblblob set ID='',PicComment='$f_comment',PicName='$f_name',PicSize='$f_size',PicType='$f_type',PicData='$data';";
$path="file_up_load";
copy($f_file,$path."/".$f_name)or die("ก๊อปไม่ได้");
mysql_query($sql)or die("ไม่สามารถบันทึกลงสู่ฐานข้อมูลได้");
mysql_close();
?>
3.แสดงผล
<?
mysql_connect("localhost","root","")or die("don to connect");
mysql_query("use training")or die("can not use data");
$path="file_up_load/";
$sql=" select * from tblblob;";
$result_sql=mysql_query($sql)or die(" sql error");
$num=mysql_num_rows($result_sql);
$dbarr=mysql_fetch_array($result_sql);
?><table>
<?
$i=1;
while($result=mysql_fetch_array($result_sql)){
if($i%4==1){
?><tr><td>
<img src=<?=$path,$result['PicName'];?> height="250" width="250">
</tr></td>
<?
}else{
?>
<tr><td>
<img src=<?=$path,$result['PicName'];?> height="250" width="250">
</tr></td>
<?
}
$i++;
}
mysql_close();
?>
</table>
|
|
|
|
|
Date :
23 ม.ค. 2550 20:42:32 |
By :
arsachi |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|