Home Backend Development PHP Tutorial TP这样的数据怎么保存

TP这样的数据怎么保存

Jun 13, 2016 pm 12:04 PM
implode name serialize

TP这样的数据如何保存?

本帖最后由 u012984377 于 2014-07-24 16:51:53 编辑
a10,a11,a15是单选,b12,b14是多选。name值a10,a11,b12,b14,b15是动态的。
也就是说的交的name是动态不固定的?后台怎么添加到数据库。多选值添加到一个单元格内?
添加例如a10,a11....都各是一条记录?
有点迷糊了?或者说这样的数组如何遍历
------解决方案--------------------
多选的用serialize序列化后存库,或者implode转字符串
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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks 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)

Convert array to string using implode() function in PHP Convert array to string using implode() function in PHP Jun 26, 2023 pm 11:51 PM

In PHP, we often need to combine elements in an array into a string. At this time, the implode() function comes in handy. The implode() function converts the elements in the array into strings and concatenates them to produce a complete string. This article will introduce how to use the implode() function in PHP to convert an array into a string. 1. Basic usage of implode() function The implode() function has two parameters. The first parameter

php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 php提交表单通过后,弹出的对话框怎样在当前页弹出,该如何解决 Jun 13, 2016 am 10:23 AM

php提交表单通过后,弹出的对话框怎样在当前页弹出php提交表单通过后,弹出的对话框怎样在当前页弹出而不是在空白页弹出?想实现这样的效果:而不是空白页弹出:------解决方案--------------------如果你的验证用PHP在后端,那么就用Ajax;仅供参考:HTML code

PHP Warning: implode(): Invalid arguments passed solution PHP Warning: implode(): Invalid arguments passed solution Jun 23, 2023 am 09:04 AM

In PHP programming, Warning messages often appear. One of the more common prompts is "PHPWarning:implode():Invalidargumentspassed". This article will introduce the ideas and methods to solve this Warning. First, we need to understand how to use the implode() function. The function of this function is to concatenate an array into a string, using the following syntax: string

Split and merge strings using the explode and implode functions Split and merge strings using the explode and implode functions Jun 15, 2023 pm 08:42 PM

In PHP programming, processing strings is a frequently required operation. Among them, splitting and merging strings are two common requirements. In order to perform these operations more conveniently, PHP provides two very practical functions, namely the explode and implode functions. This article will introduce the usage of these two functions, as well as some practical skills. 1. The explode function The explode function is used to split a string according to the specified delimiter and return an array. Its function prototype is as follows: arra

Introduction to the usage of PHP implode() function Introduction to the usage of PHP implode() function Jun 27, 2023 am 10:56 AM

In PHP programming, the implode() function is a very commonly used function. This function is mainly used to concatenate elements in an array to form a string. The use of this function is very simple and flexible. It allows us to save time and code in the process of splicing strings. In this article, we will introduce PHP's implode() function in detail so that we can use it better. Basic syntax The basic syntax for using the implode() function in PHP is as follows: implode(separa

How to use implode function to concatenate array elements into string in PHP How to use implode function to concatenate array elements into string in PHP Jun 26, 2023 pm 02:02 PM

In PHP programming, the implode function is a very commonly used function that can concatenate elements in an array into a string. Using this function can save developers from writing a lot of code to connect strings, making it more efficient. The basic syntax of implode is: stringimplode(string$glue,array$pieces). This function receives two parameters: $glue represents the separator to connect the array elements, and $pieces represents

A brief analysis of the usage of serialize and unserialize in php A brief analysis of the usage of serialize and unserialize in php Mar 24, 2023 pm 02:57 PM

PHP is a popular programming language commonly used for web development. Among them, serialize and unserialize are two very useful functions that can convert PHP objects into strings and deserialize them.

Use the PHP serialize() function to implement serialization of objects and arrays Use the PHP serialize() function to implement serialization of objects and arrays Jun 27, 2023 am 11:05 AM

In PHP, sometimes you need to convert objects or arrays into strings for storage or transmission. This process is called serialization, which converts the data structure into a sequence of strings so that the data can be transmitted and stored in different environments. PHP provides a built-in function serialize() that can implement serialization quickly and conveniently. 1. Serialization of arrays For an array, you can use serialize() to serialize it into a string. Here's an example. $arr=['apple

See all articles