Min - MACROMEDIA COLDFUSION 4.5-CFML LANGUAGE Reference

Cfml language reference
Table of Contents

Advertisement

466

Min

Returns the minimum, or smaller, value of two numbers.
See also Max.
Syntax
Min( number1 , number2 )
number1, number2
Any numbers.
Examples
<!--- This example shows the Max and Min
of two numbers --->
<HTML>
<HEAD>
<TITLE>
Min Example
</TITLE>
</HEAD>
<BODY BGCOLOR=silver>
<H3>Min Example</H3>
<CFIF IsDefined("FORM.myNum1")>
<CFIF IsNumeric(FORM.myNum1) and IsNumeric(FORM.myNum2)>
<P>The maximum of the two numbers is <CFOUTPUT>#Max(FORM.myNum1,
FORM.myNum2)#</CFOUTPUT>
<P>The minimum of the two numbers is <CFOUTPUT>#Min(FORM.myNum1,
FORM.myNum2)#</CFOUTPUT>
<CFELSE>
<P>Please enter two numbers
</CFIF>
</CFIF>
<FORM ACTION="min.cfm" METHOD="POST">
<H3>Enter two numbers, and see the maximum
and minimum of the two numbers</H3>
Number 1 <INPUT TYPE="Text" NAME="MyNum1">
<BR>Number 2 <INPUT TYPE="Text" NAME="MyNum2">
<BR><INPUT TYPE="Submit" NAME="" VALUE="See results">
</FORM>
</BODY>
</HTML>
CFML Language Reference

Advertisement

Table of Contents
loading

This manual is also suitable for:

Coldfusion 4.5

Table of Contents