php批量上传二[带预览]

<?php
$id = $_GET['id'];
$sql = "select * from biao where pid=".$id;
$res = mysqli_query($conn,$sql);
$num = mysqli_num_rows($res);   //现有多少张图片
$sql1 = "select * from biao where id=".$id;
$res1 = mysqli_query($conn,$sql1);
$row1 = mysqli_fetch_assoc($res1);
$num1 = $row1['p_num'];
$p_name = $row1['p_name'];
?>

<form action="" method="post" enctype="multipart/form-data" name="form2">
<br>
<table width="750" border="1" align="center" cellpadding="0" cellspacing="1" bgcolor="#FFFFFF">
<tr>
<td height="25"  width="550" align="center" valign="middle" bgcolor="#FFFFFF"><font size="5">添  加  图  片</font></td>
<td height="25"  align="center" valign="middle" bgcolor="#FFFFFF"><input type="submit" name="fanhui" value="返回上一层"></td>
</tr>
</table>
<br>

<table width="750" border="1" align="center" cellpadding="0" cellspacing="1" bgcolor="#FFFFCC">
<tr>
    <td align="center" colspan="2">
  <p align="left"> 现已上传图片<?php echo $num?>张:</p>
  <p>图片名称1:<input type="text" name="name[]" size="25"><input type="hidden" name="tu1"/>  <input type="file" name="pictures[]" id="file1"  /></p><p></p>
  <p>图片名称2:<input type="text" name="name[]" size="25"><input type="hidden" name="tu2"/>  <input type="file" name="pictures[]" id="file2" /></p><p></p>
  <p>图片名称3:<input type="text" name="name[]" size="25">  <input type="file" name="pictures[]" id="file3" /></p><p></p>
  <p>图片名称4:<input type="text" name="name[]" size="25">  <input type="file" name="pictures[]" id="file1"  /></p><p></p>
  <input type="submit" name="upload" value="提交" />
  </td>
</tr>
</table>
  
</form>
</body>
</html>

时间: 2024-09-20 12:09:52

php批量上传二[带预览]的相关文章

php批量上传三[带预览]

<?php if($_POST['upload']=='提交'){ //******************************************************* //**批量上传**********************************************                 function saveImage ($im , $filename)             {                           $r = image

php批量上传五[带预览]

$path=$_SERVER["DOCUMENT_ROOT"];//服务器路径         $i = 0;                  foreach ($_FILES["pictures"]["error"] as $key => $error) {     if ($error == UPLOAD_ERR_OK) {                      $upload_file=$_FILES['pictures']['

php批量上传一[带预览]

代码如下: <?php require('inc/conn.php'); ?> <head> <head> <meta http-equiv="Content-Type" c /> <title>图片上传实现</title> <script language="javascript"> function preview(x){     if(!x || !x.value) retur

Ajax上传图片及上传前先预览功能实例代码

手头上有几个小项目用到了easyUI,一开始决定使用easyUI就注定了项目整体上前后端分离,基本上所有的请求都采用Ajax来完成.在文件上传的时候用到了Ajax上传文件,以及图片在上传之前的预览效果,解决了这两个小问题,和小伙伴们分享下. 上传之前的预览 方式一 先来说说图片上传之前的预览问题.这里主要采用了HTML5中的FileReader对象来实现,关于FileReader对象,如果小伙伴们不了解,可以查看这篇文章HTML5学习之FileReader接口.我们来看看实现方式: <!DOCT

一次上传多张图片,并且上传前可以预览其缩略图 兼容IE7

问题描述 我想要一个,一次上传多张图片,并且上传前可以预览其缩略图兼容IE7的jquery插件 解决方案 解决方案二:js干不了这事,一般都是flush插件解决方案三:这需要插件.ActiveX.Silverlight.Flash都可以考虑.

php图片上传,可实现预览

php教程图片上传,可实现预览 <?php header("content-Type: text/html; charset=gb2312"); $uptypes=array('image/jpg',  //上传文件类型列表  'image/jpeg',  'image/png',  'image/pjpeg',  'image/gif',  'image/bmp',  'application/x-shockwave-flash',  'image/x-png',  'appl

asp 批量上传 二

关键字:asp 批量上传   asp 图片批量上传     批量上传文件    asp 上传文件      asp文件上传代码   php 文档批量上传 好了,我们现在来看upload.asp文件这个文件的代码主要是一个上传表单了. <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <meta name=&qu

分离与继承的思想实现图片上传后的预览功能:ImageUploadView_javascript技巧

本文要介绍的是网页中常见的图片上传后直接在页面生成小图预览的实现思路,考虑到该功能有一定的适用性,于是把相关的逻辑封装成了一个ImageUploadView组件,实际使用效果可查看下一段的git效果图.在实现这个组件的过程中,有用到前面几篇博客介绍的相关内容,比如继承库class.js,任意组件的事件管理库eventBase.js,同时包含进了自己对职责分离,表现与行为分离这两方面的一些思考,欢迎阅读与交流. 演示效果: 注:由于演示的代码都是静态的,所以文件上传的组件是用setTimeout模

javascript上传前图片预览代码

 代码如下 复制代码 <style type="text/css"> #newPreview {      filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale); } .style1     {         width: 507px; } </style> </head> <script language="javascript&