Help for this page

Select Code to Download


  1. or download this
    $i=0;
    print 'first=' , $i, ', ' if ($i++);
    print 'middle=', $i, ', ' if ($i++);
    print 'last='  , $i, ', ' if ($i++);
    print 'beyond=', $i if $i++;