"; $testing = 5; print ($testing); print (" is of type " ); print gettype($testing); print "
"; $testing = five; print ($testing); print (" is of type " ); print gettype($testing); print "
"; $testing = 5.0; print ($testing); print (" is of type " ); print gettype($testing); print "
"; $testing = true; print ($testing); print (" is of type " ); print gettype($testing); print "
"; ?>