Hi!
I have a simple question. Please see the code below:
<?php
for($i=0; $i<=10; $i++)
{
echo "$i<br>";
}
?>
Now, See this code:
<?php
for($i=0; $i<=10; ++$i)
{
echo "$i<br>";
}
?>
I get the same out put from both the Scrits. What's
the difference then anywayz?
Thank You!
Dhaval Desai
__________________________________________________
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail.
http://personal.mail.yahoo.com/
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]