PHP large-scale data submission method
This article mainly introduces the method of large-scale data submission in PHP. Interested friends can refer to it. I hope it will be helpful to everyone.
The example of this article describes the method of large-scale data submission in PHP JS. The specific implementation method is as follows:
<?php session_start(); ?> <?php if($_SESSION["login"] != "YES") { echo "<script languge=javascript> alert('您没有登录,无权访问,请先登录!'); location.href='index.php'</script>"; } ?> <!DOCTYPE html> <html> <!-- InstanceBegin template="/Templates/tmplet.dwt.php" codeOutsideHTMLIsLocked="true" --> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>短信群发管理系统</title> <link type="text/css" rel="stylesheet" href="style/style.css" /> <!-- InstanceBeginEditable name="EditRegion2" --> <script type="text/javascript" src="lib/jquery.js"></script> <script type="text/javascript" src="lib/maxlength.js"></script> <script language="JavaScript" type="text/javascript"> <!-- function checkdata() { if( myform.msgto.value == '' ) { alert ("接收方号码不能全部为空!"); myform.focus(); return false; } if(myform.content.value == '') { alert ("短消息内容不能为空!"); myform.focus(); return false; } } function moveOption1(e1, e2){ try{ for(var i = 0; i < e1.options.length; i++){ if( e1.options[i].selected ){ var e = e1.options[i]; e2.options.add(new Option(e.text, e.value)); e1.remove(i); i = i - 1; } } document.myform.msgto.value=getvalue(document.myform.list2); } catch(e){} } function moveOption2(e1, e2){ try{ for(var i = 0; i < e1.options.length; i++){ if(e1.options[i].selected ){ var e = e1.options[i]; e2.options.add(new Option(e.text, e.value)); e1.remove(i); i = i - 1; } } document.myform.msgto.value=getvalue(document.myform.list2); } catch(e){} } function getvalue(geto){ var allvalue = ""; for(var i=0;i<geto.options.length;i++){ allvalue +=geto.options[i].value + ","; } return allvalue; } function moveAllOption1(e1, e2){ try{ for(var i = 0;i < e1.options.length; i++){ var e = e1.options[i]; e2.options.add(new Option(e.text, e.value)); e1.remove(i); i = i - 1; } document.myform.msgto.value=getvalue(document.myform.list2); } catch(e){ } } function moveAllOption2(e1, e2){ try{ for(var i = 0;i < e1.options.length; i++){ var e = e1.options[i]; e2.options.add(new Option(e.text, e.value)); e1.remove(i); i = i - 1; } document.myform.msgto.value=getvalue(document.myform.list2); } catch(e){ } } --> </script> <!-- InstanceEndEditable --> </head> <body> <p id="container"> <p id="head"> </p> <p id="menu"> <ul> <li id="first_li"><a href="group.php">发送短信</a></li> <li><a href="send_box.php">发件箱</a></li> <li><a href="recv_box.php">收件箱</a></li> <li><a href="mynumber.php">管理电话薄</a></li> <li><a href="autoreply.php">添加自动回复</a></li> <li><a href="autoreply_ctl.php">管理自动回复</a></li> <li><a href="toadmin.php">联系管理员</a></li> <li><a href="logout.php">注销</a></li> </ul> </p> <p id="crumbs"> 短信管理 >>> <!-- InstanceBeginEditable name="EditRegion3" --> 发送短信 <!-- InstanceEndEditable --> </p> <p id="main"> <!-- InstanceBeginEditable name="EditRegion1" --> <?php require_once('connecting.php'); ?> <?php //php代码 $content=$_POST["content"]; $msgto = $_POST["msgto"]; if( $content != '' && $msgto != '' ) { $addtime = date("Y-m-d H:i:s"); //号码处理 $msg2 = trim( $msgto, ','); $msg2 = explode( ',', $msg2 ); if( $msg2 ) { foreach( $msg2 as $var ) { $query = "insert into sendmessage(numbersend,timesend,contentsend,flagsend) values ('$var','$addtime','$content','0')"; mysql_query( $query ); } echo "<script languge=javascript> alert('记录成功,等待发送!'); location.href='send_box.php'</script>;"; } else { echo "<script languge=javascript> alert('号码不对,请核对!'); history.back(-1);</script>;"; } } ?> <form method="post" name="myform" onsubmit="return checkdata();"> <p style=" padding-bottom:20px;"> <table border="0" width="100%" style=""> <tr> <td bgcolor="#3399CC" width="13%"><select style="width:100%;" multiple name="list1" size="15" ondblclick="moveOption1(document.myform.list1, document.myform.list2)"> <?php $query = "select * from `number`"; $result = mysql_query( $query ); if( mysql_num_rows( $result ) < 1 ) { echo "<option> 号码为空!></option>>"; } else { $totalnum = mysql_num_rows($result); for( $i=0;$i <=$totalnum;$i++ ) { $info = mysql_fetch_array( $result ); if($info != "") { echo "<option value=".$info['num']."><font color=blue ><b>".$info['name']."</b></font></option><br>"; } } }//else mysql_close($member); ?> </select> </td> <td width="10%" align="center"><input type="button" value="添加" onClick="moveOption1(document.myform.list1, document.myform.list2)"> <br> <br> <input type="button" value="全选" onClick="moveAllOption1(document.myform.list1, document.myform.list2)"> <br> <br> <input type="button" value="删除" onClick="moveOption2(document.myform.list2, document.myform.list1)"> <br> <br> <input type="button" value="全删" onClick="moveAllOption2(document.myform.list2, document.myform.list1)"> </td> <td bgcolor="#3399CC" width="13%"><select style="width:100%;" multiple name="list2" size="15" ondblclick="moveOption2(document.myform.list2, document.myform.list1)"> </select> </td> <td><table rules="none" align="center" cellpadding="1" cellspacing="10" border="0" > <tr bgcolor=""> <td height="23" align="left" style="font-size:120%;"> 请将短信内容限制在70字以内。当前字数: <span id="status1" style="width:30px;font-weight:bold;text-align:right; font-size:150%; font-family:Georgia, 'Times New Roman', Times, serif"> </span></td> </tr> <tr> <td> <textarea name="content" style="width:350px; height:120px; font-size:150%;" data-maxsize="70" data-output="status1" wrap="virtual"></textarea> </td> </tr> <tr> <td height="24"><p align="center"> <input type="submit" name="namesubmit" value="发送" /> </p></td> </tr> </table></td> </tr> </table> </p> <input type="hidden" name="msgto" value="" /> </form> <!-- InstanceEndEditable --> </p> <p id="footer"><br /> ©2010 Designed By <cite></cite><img src="images/stone.gif" alt="石三" style="margin-left:15px; border:none;" /></a><br /> <br /> </p> </p> </body> <!-- InstanceEnd --> </html>
Summary: The above is the entire content of this article. I hope It can be helpful to everyone’s study.
Related recommendations:
php for deletion, conversion, grouping, and sorting of arrays
php for characters String operation methods
Three common uses of php to simulate post requests
The above is the detailed content of PHP large-scale data submission method. For more information, please follow other related articles on the PHP Chinese website!

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
