Help for this page

Select Code to Download


  1. or download this
    if ($in > $numb) {
                    print "Too high! ";
                }else{
                     print "Too low! ";
                }
    
  2. or download this
    print 'Too ', ($in > $numb) ? 'high!' : 'low!';