xiumy
(xiumy)
注册会员

一般会员
UID 28988
精华
0
积分 76
帖子 56
金钱 76 喜悦币
威望 0
人脉 0
阅读权限 20
注册 2004-5-30
状态 离线
|
[推荐阅读] 北京公司招人PHPER,有工作经验的进.
回复 #5 namelessxp 的帖子
都没用到啊,我的upload.php(上传图片数据到数据库)程序如下:
<?php
$fp=fopen($pic,"r");
$data=addslashes(fread($fp,filesize($pic)));
$filesize=filesize($pic);
$filetype=filetype($pic);
$filename=basename($pic);
$tm=date("y-m-d h:i:s");
$cnn=mysql_connect("localhost","yxeshop","");
$query="insert into photo (name,filesize,filetype,filename,info,pic,time) values ('$name','$filesize','$filetype','$filename','$info','$data','$tm')";
if(mysql_db_query("db_yxeshop",$query))
{
header("location:index.php");
}
?>
高手看看如何改才能突破限制,上传数据到数据库
|
|