View Single Post
Old 04-04-2009, 09:46 AM   #25 (permalink)
Sakakuchi
The Contributor
 
Sakakuchi's Avatar
 
Join Date: Feb 2009
Posts: 64
Thanks: 1
Sakakuchi is on a distinguished road
Default

Damn, you guys make my head blow.

Here is my try:
PHP Code:
$a 1;
$b 2;

$a += $b;
$b $a $b;
$a -= $b;
echo 
'$b = ' $b '<br />';
echo 
'$a = ' $a
And another one, think its quite smooth
PHP Code:


$a 
1;
$b 2;
if(
$b $a && $a $b)echo '$b = ' $b .'<br />$a = ' $a
Sakakuchi is offline  
Reply With Quote