RUVIDEO
Поделитесь видео 🙏

while and do while Loops In PHP Tutorial Class 21

While and do-while Loops In PHP
Like any other language, loop in PHP is used to execute a statement or a block of statements, multiple times until and unless a specific condition is met. This helps the user to save both time and effort of writing the same code multiple times.
PHP supports four types of looping techniques;

for loop
while loop
do-while loop
for each loop

While Loop
The while loop is also an entry control loop like for loops i.e., it first checks the condition at the start of the loop and if it’s true then it enters the loop and executes the block of statements, and goes on executing it as long as the condition holds true.
Different way to write a while loop syntax:

do-while loop
This is an exit control loop which means that it first enters the loop, executes the statements, and then checks the condition. Therefore, a statement is executed at least once on using the do…while loop. After executing once, the program is executed as long as the condition holds true.
Syntax:
do{
statement(s)
}while(expr);

do-while loops are very similar to while loops, except the truth expression is checked at the end of each iteration instead of in the beginning. The main difference from regular while loops is that the first iteration of a do-while loop is guaranteed to run (the truth expression is only checked at the end of the iteration), whereas it may not necessarily run with a regular while loop (the truth expression is checked at the beginning of each iteration, if it evaluates to FALSE right from the beginning, the loop execution would end immediately).

The meaning of a while statement is simple. It tells PHP to execute the nested statement(s) repeatedly, as long as the while expression evaluates to TRUE. The value of the expression is checked each time at the beginning of the loop, so even if this value changes during the execution of the nested statement(s), execution will not stop until the end of the iteration (each time PHP runs the statements in the loop is one iteration). If the while expression evaluates to FALSE from the very beginning, the nested statement(s) won't even be run once.

Download Notes Link:
http://axixatechnologies.com/youtubenotes/while&do-whileLoopsClass- 21.pdf

The people of bikaner is also know about quality of Axixa technologies and Rajesh sir. Axixa is old and popular place for programming languages since 10 years.. we'll try to cover all basic and advanced topic of php in our php tutorials.
learn php with AXIXA technologies and have a nice day
If you want me to cover any topic related it sector you can comment down the topic we will try to cover that.

Rajesh purohit (+919251435299)
Email: [email protected]
Website: https://axixatechnologies.com/
Facebook: https://www.facebook.com/axixatechnology/
instagram : https://www.instagram.com/axixatechnologiesoffcial/?hl=en

#whileloop #do-whileloop #forloop #foreachloop
#phploops #phpforloops #loopsnphp #forloopsinphp, #differentloopsinphp,#PHP # tutoria ##AXIXA #Heredoc #nowdoc #Scope #syntax #php #web_development #free_classes #covid_19_special #stay_tuned #keep_watching #keep_supporting #subscribe_now #press_bell_icon #like #share #web_design #website_design #tradingkeywords #Switch
#HTML #CSS #JavaScript #Server #WebApplication #CreateWeb #Application #WebSite #PHP #PHPinHindi #PHP tutorials #phptutorialfor #beginners #full #php #programming #php #mysql #tutorial #Numeric #Array #Associative #Array #SQL
#Indexed #Numeric
#print #printfunction #phpprintfunction #print_rfunction #print_r #phpstringfunctions #print_r #phpprint #echovsprint #ltrimfunction #function #printrinhindibytestycodeiz #functions #explodestringfunctions #printr #phpfunction #strpadfunctions #datefunction #strpadfunctioninbangla #printinphp #phpfunctions #phpdiefunction #gettypefunctioninphp #phpechofunction #phpexitfunction #phpbuiltinfunctions #nl2brfunctioninbangla #phpfunctionsinbangla #ltrim/trim/rtrimstringfunctions

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «while and do while Loops In PHP Tutorial Class 21», вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.

Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!

Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.