DIR Return Create A Forum - Home
---------------------------------------------------------
Hack Community
HTML https://roshacks.createaforum.com
---------------------------------------------------------
*****************************************************
DIR Return to: Web and Scripting
*****************************************************
#Post#: 511--------------------------------------------------
[PHP] Looping Statements
By: pipo1337 Date: May 13, 2018, 7:30 am
---------------------------------------------------------
[code]<?php
for( $i= 0 ; $i <= 10 ; $i++ ) //This will echo 11 times include
zero number
{
echo 'Num is ' . $i . '';
echo "\n";
}
?>[/code]
*****************************************************