浅析php批量添加和更新数据的方法实现
批量添加数据和批量更新数据在可以为网站管理员节省不少时间,现在我们来学习一下用phpphp批量添加数据与批量更新数据的实现方法。
php如果要批量保存数据我们只要使用sql的insert into语句就可能实现数据批量保存了,如果是更新数据使用update set就可以完成更新了,操作方法都非常的简单,下面整理两个例子.
批量数据录入
设计方法:同时提交多条表单记录,为每一条记录设置相同的文本域名称,然后在表单处理页中,通过for循环来读取提取表单提交的数据,最后以数据的形式将数据逐条添加到数据库中.
其中,应用一个count()函数来获取数组中元素的个数.int count(mixed var);
表单提交页面,代码如下:
<form name="form1" method="post" action="index_ok.php"> <tr> <td>商品名称</td> <td>编号</td> <td>单价</td> <td>数量</td> <td>产地</td> <input name="data" type="hidden" value="<?php echo $data;?>"> </tr> <tr> <td><input name="sp_name[]" type="text" id="sp_name" size="15"></td> <td><input name="sp_number[]" type="text" id="sp_number" size="10"></td> <td><input name="price[]" type="text" id="price" size="8"></td> <td><input name="counts[]" type="text" id="counts" size="8"></td> <td><input name="address[]" type="text" id="address" size="15"></td> </tr> <input type="submit" name="submit" value="提交"> <input type="reset" name="reset" value="重置"> </form>
数据库连接页,代码如下:
<?php $id=mysql_connect("localhost","root","password") or die('connection failed'.mysql_error()); if(mysql_ select _db('mydatabase',$id)) echo ""; else echo('select db failed:'.mysql_error()); ?>
表单处理页,代码如下:
<?php session_start(); include("conn/conn.php"); if($submit==true){ for($i=0;$i<count($sp_name);$i++){ $path=$_POST["sp_name"][$i]; $path1=$_POST["sp_number"][$i]; $path2=$_POST["price"][$i]; $path3=$_POST["counts"][$i]; $path4=$_POST["address"][$i]; $query=mysql_query("insert into tb_products(sp_name,sp_number,price,counts,address,data) values('$path','$path1','$path2','$path3','$path4','$data');" } if($query==true){ echo"提交成功"; else echo"提交失败"; } } ?>
批量更新数据
主要通过while, list(),each()函数来实理数据的批量更新,list()函数用于一次性为多个变量赋值,代码如下:
<?php session_start(); include("conn/conn.php");?> <form name="form1" method="post" action="index_ok.php"> <?php $query="select * from tb_users"; $result=mysql_query($query); if($result==true){ while($myrow=mysql_fetch_array($result)){ ?> <tr> <td><input name="<?php echo $myrow[id];?> type=" checkbox " value="<?php echo $myrow[id]; ?></td> <td><?php echo $myrow[user];?></td> <td><?php echo $myrow[popedom];?></td> <td><?php echo $myrow[operation];?></td> </tr> <?php }} ?> <tr> <input type="submit" name="submit" value="激活"> <input type="submit" name="submit2" value="冻结"> </tr> </form>
表单处理页,代码如下:
<?php session_start(); include("conn/conn.php") if($submit=="激活"){ while(list($name,$value)=each($_POST)){ $result=mysql_query("update tb_user set operation='激活' where id='".$name."'"); if($result==true){ echo "<script> alert('激活成功');window.location.href='index.php';</script>";}} if($submit2=="冻结"){ while(list($name,$value)=each($_POST)){ $result=mysql_query("update tb_user set operation='冻结' where id='".$name."'"); if($result==true){ echo "<script> alert('冻结成功');window.location.href='index.php';</script>";}} } ?>
总结:心细的朋友会发现两个例子都有几个共同点,一个是表单from的表单名是以counts[]数组形式了,而在php处理接受页面都会使用for 或while来实现遍历了,下面我就简单的给大家分析这两个例子.
counts[]:这个在表单中是代表数组,如果你有10个表单那么我们name=counts[] 意思他们内个都是一样数组,知道这个是数组了就知道下面知道为什么会使用遍历了.
for或while:因为表单过来的是数组我们就可以遍历数组然后对数据进行保存了,如下代码:
while(list($name,$value)=each($_POST)){ 或
for($i=0;$i 本文链接: 收藏随意^^请保留教程地址.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Comparative analysis of PHPSession cross-domain and cross-site request forgery With the development of the Internet, the security of web applications has become particularly important. PHPSession is a commonly used authentication and session tracking mechanism when developing web applications, while cross-domain requests and cross-site request forgery (CSRF) are two major security threats. In order to protect the security of user data and applications, developers need to understand the difference between Session cross-domain and CSRF, and adopt

Memcached is a commonly used caching technology that can greatly improve the performance of web applications. In PHP, the commonly used Session processing method is to store the Session file on the server's hard disk. However, this method is not optimal because the server's hard disk will become one of the performance bottlenecks. The use of Memcached caching technology can optimize Session processing in PHP and improve the performance of Web applications. Session in PHP

Implementation steps: 1. Use the for statement control range to traverse the numbers from 1 to 100, the syntax is "for ($i = 1; $i <= 100; $i++) {loop body code}"; 2. In the loop body, Just use the if statement and the "%" operator to obtain and output odd numbers. The syntax is "if($i % 2 != 0){echo $i." ";}".

Asynchronous processing method of SelectChannelsGo concurrent programming using golang Introduction: Concurrent programming is an important area in modern software development, which can effectively improve the performance and responsiveness of applications. In the Go language, concurrent programming can be implemented simply and efficiently using Channels and Select statements. This article will introduce how to use golang for asynchronous processing methods of SelectChannelsGo concurrent programming, and provide specific

How to hide the select element in jquery: 1. hide() method, introduce the jQuery library into the HTML page, you can use different selectors to hide the select element, the ID selector replaces the selectId with the ID of the select element you actually use; 2. css() method, use the ID selector to select the select element that needs to be hidden, use the css() method to set the display attribute to none, and replace selectId with the ID of the select element.

When we write web pages using PHP, sometimes we need to include code from other PHP files in the current PHP file. At this time, you can use the include or include_once function to implement file inclusion. So, what is the difference between include and include_once?

Execution sequence: 1. Execute the "initialization expression"; 2. Execute the "conditional judgment expression". If the value of the expression is true, execute the "loop body", otherwise the loop ends; 3. After executing the loop body, execute "Variable update expression"; 4. After the variable is updated, enter the next loop until the condition judgment value is false, ending the loop.

Best Practices for Solving PHPSession Cross-Domain Issues With the development of the Internet, the development model of front-end and back-end separation is becoming more and more common. In this mode, the front-end and back-end may be deployed under different domain names, which leads to cross-domain problems. In the process of using PHP, cross-domain issues also involve Session delivery and management. This article will introduce the best practices for solving session cross-domain issues in PHP and provide specific code examples. Using CookiesUsing Cookies
