Do While Loop
The do...while loop will always execute the block of code once, check the condition, and repeat the loop as long as the specified condition is true.
$i = 1;

do {
    echo "My name is Nia" . "\n";
    
    
} while ($i < 0); 
by Elena Kuparadze
2 years ago
PHP
Loop
0
Pro tip: use ```triple backticks around text``` to write in code fences