|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
第1步环境配置好了,你算了进了1小步了,那么第2步呢就是调出第1个程序一般都是用helloworld,视频教程里面我都做了,helloworld
php基本教程:文件以二进制情势上传并放进数据库
conn.php:- <?php$id=mysql_connect(localhost,root,root);mysql_select_db("db_database12",$id);mysql_query("setnamesgb2312");?>
复制代码 index.php:- <html><head><metahttp-equiv="Content-Type"content="text/html;charset=gb2312"><title>上传文件到服务器</title><styletype="text/CSS"><!--body{margin-left:00px;margin-top:0px;margin-right:0px;margin-bottom:0px;}--></style></head><body><tablewidth="385"height="185"border="0"cellpadding="0"cellspacing="0"><tr><tdwidth="130"height="85"></td><tdwidth="200"></td><tdwidth="55"></td></tr><formname="form1"method="post"action="index_ok.php"enctype="multipart/form-data"><tr><tdheight="40"></td><tdalign="center"valign="middle"><inputname="file2"type="file"id="file2"size="15"maxlength="150"></td><td></td></tr><tr><tdheight="30"></td><tdalign="center"><inputtype="submit"name="Submit"value="提交"></td><td></td></tr></form><tr><tdheight="30"></td><td></td><td></td></tr></table></body></html>
复制代码 index_ok.php:- <?phpsession_start();include("conn.php");?><?phpif($Submit=="提交"){$data=date("Y-m-d");$file_name="file2";$path=./upfiles/.$_FILES[file2][name];if(move_uploaded_file($_FILES[file2][tmp_name],$path)){$query="insertintotb_file2(file_name,file_text,data)values($file_name,$path,$data)";$result=mysql_query($query);if($result=true){echo"上传乐成!!";echo"<metahttp-equiv="Refresh"content="3;url=index.php?lmbs=文件上传">";}else{echo"文件上传失利!!";echo"<metahttp-equiv="Refresh"content="3;url=index.php?lmbs=文件上传">";}}}?>
复制代码 可以说你的马步已经扎的差不多了,接下来就要开始练把势的时候了,如果有条件的话,用笔或者打印一个简易的PHP手册在身上,时不时的摸出来看看,记得,去WC也不能放过(^2^)。 |
|