use simple example (while)

PHOTO EMBED

Thu Sep 21 2023 04:54:09 GMT+0000 (Coordinated Universal Time)

Saved by @Mohammadrezasmz

<?php

$num=1;

while ($num <= 50){
echo $num . "<br>";
$num++;
}

?>
content_copyCOPY

use simple example (while)