Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial 【4个数组同时写到数据库怎么写?】

【4个数组同时写到数据库怎么写?】

Jun 23, 2016 pm 01:54 PM
database array

$_POST['a']       值为1,2,3,4,5
$_POST['b']       值为a,b,c,d,e
$_POST['c']       值为男,女,女,男,男
$_POST['d']       值为25,26,27,26,26


这四个数组同时是从里接收过来的。现在我要把它们都写入到数据库里,循环应该怎么写?

最后写到数据库的格式应该是
               编号 姓名   性别 年龄
第一条:1       a         男     25
第二条:2       b         女     26
第三条:3       c         女     27
第四条:4       d         男     26
第五条:5       e         男     26


回复讨论(解决方案)

$_POST['a'] = array(1,2,3,4,5);$_POST['b'] = array('a','b','c','d','e');$_POST['c'] = array('男','女','女','男','男');$_POST['d'] = array(25,26,27,26,26);foreach($_POST['a'] as $i=>$v) {  $sql = "inser into tbl_name values('$v', '{$_POST['b'][$i]}', '{$_POST['c'][$i]}', '{$_POST['d'][$i]}')";  echo $sql, PHP_EOL;}
Copy after login
inser into tbl_name values('1', 'a', '男', '25')
inser into tbl_name values('2', 'b', '女', '26')
inser into tbl_name values('3', 'c', '女', '27')
inser into tbl_name values('4', 'd', '男', '26')
inser into tbl_name values('5', 'e', '男', '26')

$_POST['a'] = '1,2,3,4,5';$_POST['b'] = "a,b,c,d,e";$_POST['c'] = "男,女,女,男,男";$_POST['d'] = "25,26,27,26,26";$a = explode(',', $_POST['a']);$b = explode(',', $_POST['b']);$c = explode(',', $_POST['c']);$d = explode(',', $_POST['d']);foreach($a as $key=>$value){    $sql = "inser into tbl_name values('$value', '{$b[$key]}', '{$c[$key]}', '{$d[$key]}');";    //mysql_query($sql);    echo $sql, PHP_EOL;
Copy after login

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP array key value flipping: Comparative performance analysis of different methods PHP array key value flipping: Comparative performance analysis of different methods May 03, 2024 pm 09:03 PM

The performance comparison of PHP array key value flipping methods shows that the array_flip() function performs better than the for loop in large arrays (more than 1 million elements) and takes less time. The for loop method of manually flipping key values ​​takes a relatively long time.

iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos Jul 18, 2024 am 05:48 AM

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

Application of PHP array grouping function in data sorting Application of PHP array grouping function in data sorting May 04, 2024 pm 01:03 PM

PHP's array_group_by function can group elements in an array based on keys or closure functions, returning an associative array where the key is the group name and the value is an array of elements belonging to the group.

Detailed tutorial on establishing a database connection using MySQLi in PHP Detailed tutorial on establishing a database connection using MySQLi in PHP Jun 04, 2024 pm 01:42 PM

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

How to handle database connection errors in PHP How to handle database connection errors in PHP Jun 05, 2024 pm 02:16 PM

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.

The role of PHP array grouping function in finding duplicate elements The role of PHP array grouping function in finding duplicate elements May 05, 2024 am 09:21 AM

PHP's array_group() function can be used to group an array by a specified key to find duplicate elements. This function works through the following steps: Use key_callback to specify the grouping key. Optionally use value_callback to determine grouping values. Count grouped elements and identify duplicates. Therefore, the array_group() function is very useful for finding and processing duplicate elements.

PHP array key-value exchange: Analysis of the advantages and disadvantages of common algorithms PHP array key-value exchange: Analysis of the advantages and disadvantages of common algorithms May 04, 2024 pm 10:39 PM

Three common algorithms for exchanging array key values ​​in PHP have their own advantages and disadvantages: array_flip(): simple and efficient, but the values ​​must be unique and cannot handle multi-dimensional arrays. Manual traversal: can handle multi-dimensional arrays and control exceptions, but the code is longer and less efficient. ksort()+array_keys(): can handle any type of array and control the sort order, but it is less efficient. Practical cases show that array_flip() is the most efficient, but when dealing with multi-dimensional arrays, manual traversal is more appropriate.

How does Go WebSocket integrate with databases? How does Go WebSocket integrate with databases? Jun 05, 2024 pm 03:18 PM

How to integrate GoWebSocket with a database: Set up a database connection: Use the database/sql package to connect to the database. Store WebSocket messages to the database: Use the INSERT statement to insert the message into the database. Retrieve WebSocket messages from the database: Use the SELECT statement to retrieve messages from the database.

See all articles