<?php
$i=0;
$j=5;
while($j==5)
{echo $i;
echo ",";
$i=$i+.2;
if($i==1)
{break;}
?>
output: 0,.2,.4,.8
but why
<?php
$i=0;
$j=5;
while($j==5)
{echo $i;
echo ",";
$i=$i+.2;
if($i==2)
{break;}
?>
no output?
Moderators: macek, egami, gesf





Users browsing this forum: No registered users and 1 guest