Home Backend Development PHP Tutorial Get the number of loops in php while loop_PHP tutorial

Get the number of loops in php while loop_PHP tutorial

Jul 13, 2016 am 10:25 AM
while loop

Copy code The code is as follows:

$link = mysql_connect('localhost','root',' pwd');
mysql_select_db('db');
$sql = "select region_id,local_name from regions where region_grade=1";
$result = mysql_query($sql);
$i =0;
while ($row= mysql_fetch_assoc($result)) {
$list[$i]['text']=$row['local_name'];
$list[$i] ['value']=$row['region_id'];
$i++;
}
$list = json_encode($list);
echo $list;
?>

It is occasionally used in actual work.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/824936.htmlTechArticleCopy the code as follows: ?php $link = mysql_connect('localhost','root','pwd') ; mysql_select_db('db'); $sql = "select region_id,local_name from regions where region_grade=1"; $res...
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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
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)

How to use while loop statement to implement string splicing in PHP How to use while loop statement to implement string splicing in PHP Mar 07, 2024 pm 02:15 PM

Title: Using while loops to implement string splicing in PHP In the PHP language, using while loop statements to implement string splicing is a common operation. Loop through an array, list, or other data source, concatenating each element or value into a string. This method is useful when dealing with large amounts of data or when strings need to be generated dynamically. Let's look at some specific code examples below. First, we prepare an array as the data source, and then use a while loop to implement string splicing

JS loop learning: use of while loop statements (detailed examples) JS loop learning: use of while loop statements (detailed examples) Aug 03, 2022 pm 06:04 PM

The purpose of a loop is to repeatedly execute a certain piece of code. Using loops can reduce programming pressure, avoid code redundancy, improve development efficiency, and facilitate later maintenance. The while loop is the simplest loop statement provided in JavaScript. Let's learn about the use of while loops and do-while loops.

Java program to calculate the sum of numbers in a list using while loop Java program to calculate the sum of numbers in a list using while loop Sep 13, 2023 pm 09:05 PM

Introduction to Java program to calculate the sum of numbers in a list using while loop is a simple program that takes a list of integers and calculates their sum using while loop structure. In this program, an ArrayList of integers is created and some numbers are added to the list. The program then uses a while loop to iterate through each element in the list, adding each element to the variable "sum", which keeps track of the running sum of the numbers. After the loop completes, the final value of "sum" is printed to the console, which is the sum of all the numbers in the list. This program demonstrates a common technique for working with data collections in programming, which is to use a loop to iterate over each element in the collection and perform some calculation or transformation on each element. The plan also focuses on

Write a C program to calculate the average word length of sentences using a while loop Write a C program to calculate the average word length of sentences using a while loop Aug 28, 2023 pm 06:25 PM

Problem Enter a sentence at runtime and write a code to calculate the average length of words appearing in the sentence Solution algorithm STARTStep1:declarecharacter,intanddoublevariablesStep2:EnteranystatementStep3:whileloop Checkconditionstmt[i]=getchar())!='' &nbsp

How to implement while loop statement in PHP How to implement while loop statement in PHP Jan 18, 2023 am 09:15 AM

There are two syntaxes for implementing while loop statements in PHP, namely: 1. "while (...) {...}" syntax, which means that as long as the specified condition is true, the while loop will execute the code block; 2. " do {...} while (...);" syntax, which executes the code block once, then checks the condition, and repeats the loop if the specified condition is true.

What is the difference between while loop and do while loop? What is the difference between while loop and do while loop? Sep 25, 2023 pm 05:54 PM

The difference is: 1. The while loop judges the condition first and then executes the loop body, while the do-while loop executes the loop body first and then judges the condition; 2. The while loop judges the loop condition first, and if the condition is met, the loop body is executed. code, and then judge the condition again, and loop like this until the loop is jumped out when the condition is not satisfied. The do-while loop first executes the code in the loop body, and then judges whether the loop condition is satisfied. If the condition is satisfied, the loop continues to execute. The code in the body loops like this until the loop is jumped out when the condition is not met.

How to use while loop in php How to use while loop in php Mar 14, 2023 pm 06:56 PM

There are two types of while loops in PHP: 1. While loop statement, the loop condition is first judged. When the condition is satisfied, the loop body is executed, and when it is not satisfied, it stops; syntax "while (expression) { loop body statement block; } ". 2. The "do while" loop statement first executes the "statement block" in the loop body once, and then judges the loop condition. If it is true, the loop continues, if it is false, the loop is terminated; the syntax "do {Loop body statement block;}while(expression);".

Use PHP to write a while loop to generate a solid diamond Use PHP to write a while loop to generate a solid diamond Mar 15, 2024 pm 01:15 PM

Title: Write a while loop in PHP to generate a solid diamond. In PHP, we can use a while loop to generate a solid diamond. The following uses a specific code example to demonstrate how to use PHP to write a while loop to generate a solid diamond.

See all articles