Generation

generate functionFri, 31 Mar 2023

Programa que cuenta del 1 al 100 con while tipo for

<?php $contador = 0; while ($contador < 100) { echo $contador; $contador = $contador + 1; } ?>

Want to kickstart your project?Use the new AI Studio to create your code