Help for this page
Select Code to Download
Select
or
download this
if (($i == 7) | ($i == 14) | ($i == 21) | ($i == 28) | ... ){
Select
or
download this
if (($i == 7) || ($i == 14) || ($i == 21) || ($i == 28) || ... ) {
Select
or
download this
if ( $i == 7 || $i == 14 || $i == 21 || $i == 28 || ... ) {
Select
or
download this
if ( $i % 7 == 0 ) {