Howdy,
Can someone tell me how can I get nonregular numbers (from a loop) like those:
1 3 9 11 13 15 17 19 21 23 25 27 29 31 ....
I'm using this code for a normal loop:
<?
$count = 32;
print"$result<br>";
for($i = 1; $i< $count; $i++) {
print("
Name_$i<br>
");
}
?>
& I just don't know how to get that non regular loop:
Name_1 Name_3 Name_9 Name_11 Name_13 Name_15 Name_17 Name_19 Name_21 Name_23 Name_25 Name_27 Name_29 Name_31 ....
Any idea?!!
Cheers.
Mauro