Hello Jay,
Tuesday, December 9, 2003, 1:31:35 PM, you wrote:
JB> for($i = 2; $i < 0144; $i++){
JB> echo $i . "\n";
JB> }
JB> does not echo anything. Even put the numbers in quotes (single and
JB> double). What has being brain-dead caused me to miss this morning?
Look at your val
[snip]
for($i = 2; $i < 0144; $i++){
echo $i . "\n";
}
does not echo anything. Even put the numbers in quotes (single and
double). What has being brain-dead caused me to miss this morning?
[/snip]
I found it...one too many zeros in initial $i (I wanted to say "one two
many..")
for($i = 2; $i < 0144; $i++){
echo $i . "\n";
}
does not echo anything. Even put the numbers in quotes (single and
double). What has being brain-dead caused me to miss this morning?
Thanks!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.ph
3 matches
Mail list logo