| Server IP : 172.67.201.108 / Your IP : 216.73.216.11 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/home2/cgny/public_html/stealsadmin/ |
Upload File : |
<cfif parameterexists(url.redeemed)>
<cfquery name=ydoa dataSource="#ds#">
update steals.stealsvendorcoupons
set numberavailable = numberavailable -1
where couponid = #url.couponid#
</cfquery>
</cfif>
<Cfquery name="getcoupon" dataSource="#ds#">
select * from steals.stealsvendorcoupons
where couponid = #url.couponid#
</cfquery>
<Cfquery name="getcouponname" dataSource="#ds#">
select * from steals.stealsvendor
where vendorid = #getcoupon.vendorid#
</cfquery>
<Cfquery name="getlocation" dataSource="#ds#">
select * from steals.stealsvendorlocations
where locationid = #getcoupon.locationid#
</cfquery>
<html>
<head>
<title>Purchase Offer Now</title>
<link type="text/css" rel=stylesheet href='https://fonts.googleapis.com/css?family=Montserrat:400,700'/>
</head>
<body style="background-color: white;margin:20px;font-family: 'Montserrat'">
<center>
<table style="width:80%;margin: 10px;border-color: red;border-style: dashed;border-width: 4px;background-color: white;">
<tr><Td style="padding:30px;">
<center> <table>
<Tr><td><!---<img src="http://www.cityguideny.com/images/cityguideny-logo.jpg" style="height:100px;">---></td><td><Center><font color="##001e65" size="+2"><em>STEALS AND DEALS
</em>
<p>
<Cfoutput><center>Today: <Font color="red">#dateformat(now(),'mm/dd/yyyy')#</Font>
</center></Cfoutput>
</font></Center></td>
</table> </center>
<Cfif parameterexists(url.process)>
<Cfif #form.email# is not #form.email2#>
Error, email addresses do not match. <a href = "javascript:history.back()">click here</a> to go back and check your information.
<Cfabort>
</Cfif>
<CFSET CurrentDateTime = #CreateODBCDateTime(Now())#>
<Cfparam name="form.adultsquantity" default="0">
<Cfparam name="form.kidsquantity" default="0">
<Cfparam name="form.seniorquantity" default="0">
<Cfparam name="form.otherquantity" default="0">
<Cfparam name="form.ccnum" default="1234">
<Cfparam name="form.password" default="">
<Cfparam name="form.saver" default="">
<Cfparam name="form.subber" default="">
<cfset total = 0>
<cfif form.adultsquantity gt 0>
<Cfset total = total + (form.adultsquantity * #getcoupon.specialpriceadults#)>
</cfif>
<cfif form.kidsquantity gt 0>
<Cfset total = total + (form.kidsquantity * #getcoupon.specialpricekids#)>
</cfif>
<cfif form.seniorquantity gt 0>
<Cfset total = total + (form.seniorquantity * #getcoupon.specialpriceseniors#)>
</cfif>
<cfif form.otherquantity gt 0>
<Cfset total = total + (form.otherquantity * #getcoupon.specialprice#)>
</cfif>
<Cfset total = total + 4>
<Cfset approved = 'on'>
<!--- ColdFusion's cfhttp object is specifically designed to create a post,
and retrieve the results. Those results are accessed in cfhttp.filecontent --->
<!--- By default, this sample code is designed to post to our test server
for developer accounts: https://test.authorize.net/gateway/transact.dll
for real accounts (even in test mode), please make sure that you are\posting to: https://secure.authorize.net/gateway/transact.dll --->
<cfhttp method="Post" url="https://secure.authorize.net/gateway/transact.dll ">
<!--- the API Login ID and Transaction Key must be replaced with valid values --->
<cfhttpparam type="Formfield" name="x_login" value="2d7azPPx23">
<cfhttpparam type="Formfield" name="x_tran_key" value="7a5VkmM372PU3Kh2">
<cfhttpparam type="Formfield" name="x_delim_data" value="TRUE">
<cfhttpparam type="Formfield" name="x_delim_char" value="|">
<cfhttpparam type="Formfield" name="x_relay_response" value="FALSE">
<cfhttpparam type="Formfield" name="x_test_request" value="FALSE">
<cfhttpparam type="Formfield" name="x_type" value="AUTH_CAPTURE">
<cfhttpparam type="Formfield" name="x_method" value="CC">
<cfhttpparam type="Formfield" name="x_card_num" value="#form.ccnum#">
<cfhttpparam type="Formfield" name="x_exp_date" value="#form.ccexpire#">
<cfhttpparam type="Formfield" name="x_amount" value="9.95">
<cfhttpparam type="Formfield" name="x_description" value="NYC Coupon Pak">
<cfhttpparam type="Formfield" name="x_first_name" value="#form.firstname#">
<cfhttpparam type="Formfield" name="x_last_name" value="#form.lastname#">
<cfhttpparam type="Formfield" name="x_address" value="#form.address#">
<cfhttpparam type="Formfield" name="x_state" value="#form.state#">
<cfhttpparam type="Formfield" name="x_zip" value="#form.zip#">
<!--- Additional fields can be added here as outlined in the AIM integration
guide at: http://developer.authorize.net --->
<!--- The following fields show an example of how to include line item details, they are commented out by default.
<cfhttpparam type="Formfield" name="x_line_item" value="item1<|>golf balls<|><|>2<|>18.95<|>Y">
<cfhttpparam type="Formfield" name="x_line_item" value="item2<|>golf bag<|>Wilson golf carry bag, red<|>1<|>39.99<|>Y">
<cfhttpparam type="Formfield" name="x_line_item" value="item3<|>book<|>Golf for Dummies<|>1<|>21.99<|>Y">
--->
</cfhttp>
<!--- Because coldfusion's ListToArray object ignores empty fields, we must
put a space in all empty fields to make sure that they are not skipped --->
<cfset post_response=Replace(cfhttp.filecontent,"||","| |", "all")>
<!--- the same command is run twice, because the first time it only adjusts
every other empty field --->
<cfset post_response=Replace(post_response,"||","| |", "all")>
<!--- now the ListToArray method can be used without skipping fields --->
<cfset response_array=ListToArray(post_response, "|")>
<!--- the results are output to the screen in the form of an html numbered list. --->
<!--- individual elements of the array could be accessed to read certain
response fields. For example, response_array[1] would return the Response
Code, response_array[3] would return the Response Reason Code.
For a list of response fields, please review the AIM Implementation Guide --->
<Cfif #response_array[4]# contains 'Approved' or parameterexists(approved)>
<cfquery name=addphoto datasource="cityguide">
INSERT INTO steals.couponorder(datetime,
firstname,
email,
lastname,
address,
city,
state,
zip,
country,
paid,
couponid,
used,
last4,
Adults,
Kids,
Senior,
Other,
Total,password,saver,subber,mobilephone
)
VALUES (#currentdatetime#,'#form.firstname#','#form.email#','#form.lastname#','#form.address#','#form.city#','#form.state#','#form.zip#','#form.country#',1,#url.couponid#,0,#right(form.ccnum,4)#,#form.adultsquantity#,#form.kidsquantity#,#form.seniorquantity#,#form.otherquantity#,#total#,'#form.password#','#form.saver#','#form.subber#','#form.mobilephone#')
</cfquery>
<cfquery name="Getorder" dataSource="#ds#">
select id from steals.couponorder
order by id desc limit 0,1
</cfquery>
<Cfif parameterexists(form.saver) and #form.saver# eq 'on'>
<cfquery name="checkpeople" dataSource="#ds#">
select email from steals.stealsvendorpeople where email = '#form.email#'
</cfquery>
<Cfif #checkpeople.recordcount# eq 0>
<cfquery name=addphoto datasource="#ds#">
INSERT INTO steals.stealsvendorpeople(name,vendorid,email,password,phone,type,accesslevel,title)
VALUES('#form.firstname# #form.lastname#',0,'#form.email#','#form.password#','#form.mobilephone#','',0,'')
</cfquery>
</Cfif>
</Cfif>
<!---
<CFMAIL
TO="[email protected],[email protected],[email protected]"
SUBJECT="COUPONPAK Order Processed - #form.firstname# #form.lastname#"
FROM="NYC CouponPak <[email protected]>"
SERVER="Mail.davlermedia.com"
username="Davler\webmail"
password="Webhome22@"
>
First Name: #form.firstname#
Last Name: #form.lastname#
Email: #form.email#
Address: #form.address#
City: #form.city#
State: #form.state#
Zip: #form.zip#
Country: #form.country#
Link: #couponlink#
</cfmail>
--->
<CFMAIL
TO="#form.email#"
SUBJECT="Steals & Deals Order Confirmation"
FROM="Steals & Deals <[email protected]>"
SERVER="Mail.davlermedia.com"
username="Davler\webmail"
password="Webhome22@"
type="html"
>
<p>
Here is your Steals & Deals confirmation.
<p>
Your credit card is being charged for $#total#.
<p>
Thank you for purchasing. To download your offer, <a href="http://stealsadmin.cityguideny.com/previewcoupon.cfm?couponid=#url.couponid#&orderid=#getorder.id#">click here</a>
</a>
<p>
<p>
Please do not reply to this email. If you have any questions, please contact [email protected].
</cfmail>
<p>
<center>
<Cfoutput>
<A href="previewcoupon.cfm?couponid=#url.couponid#&orderid=#getorder.id#">Thank you! Click Here to View Your Coupon and Check Your Email for a Copy as Well!</A>
</Cfoutput>
<p>
<Cfelse>
<Font size="+1" color="red">
Your transaction was declined, please <a href = "javascript:history.back()">click here</a> to go back and check your payment information.
</Cfif>
<Cfelse>
<Cfoutput query="getcoupon">
<center><h1 style="margin-bottom: 0px;padding-bottom: 0px;">#couponname# for #getcouponname.vendorname#</h1>
<h2 style="margin-top:0px;">
<table><tr><td><center>Expires: <Font color="red">#dateformat(expirationdate,'mm/dd/yyyy')#</Font>
</center></td><td><center>-</center></td><td> <center> Quantity Left: <Font color="red">#numberavailable#</Font></center></td></tr></table>
</h2>
<h3>#getlocation.address# #getlocation.address2# #getlocation.city#, #getlocation.state# #getlocation.zip#<br>
#getlocation.phone# </h3>
<table>
<Cfif normalpriceadults is not ''>
<tr>
<Td>Adults:</Td>
<td><S>$#normalpriceadults#</S> - $#specialpriceadults#
</td>
<Cfset price = normalpriceadults - specialpriceadults>
<td>SAVE: <font color="red">$#price#</font>
</tr>
</Cfif>
<Cfif normalpricekids is not ''>
<tr>
<Td>Kids:</Td>
<td><S>$#normalpricekids#</S> - $#specialpricekids#
</td>
<Cfset price = normalpricekids - specialpricekids>
<td>SAVE: <font color="red">$#price#</font>
</tr>
</Cfif>
<Cfif normalpriceseniors is not ''>
<tr>
<Td>Seniors:</Td>
<td><S>$#normalpriceseniors#</S> - $#specialpriceseniors#
</td>
<Cfset price = normalpriceseniors - specialpriceseniors>
<td>SAVE: <font color="red">$#price#</font>
</tr>
</Cfif>
<Cfif otherprice is not ''>
<tr>
<Td>#otherprice#:</Td>
<td><S>$#normalprice#</S> - $#specialprice#
</td>
<Cfset price = normalprice - specialprice>
<td>SAVE: <font color="red">$#price#</font>
</tr>
</Cfif>
</table> </center>
<br>
#description#
<br>
Restrictions: <small>#restrictions#</small>
<p>
REMINDER: THESE INVITATIONS ARE ONLY VALID DURING LISTED TIMES. IF THEY ARE NOT USED THEM THEY EXPIRE WITHOUT ANY RESIDUAL VALUE.
</Cfoutput>
<br>
<Center>
</Center>
<cfif parameterexists(session.id) and parameterexists(session.accesslevel) and parameterexists(session.member)>
<cfquery name="Getdata" dataSource="#ds#">
select * from steals.couponorder
where email = '#session.email#'
</cfquery>
<cfelse>
<cfparam name="getdata.firstname" default="">
<cfparam name="getdata.lastname" default="">
<cfparam name="getdata.email" default="">
<cfparam name="getdata.email2" default="">
<cfparam name="getdata.mobilephone" default="">
<cfparam name="getdata.address" default="">
<cfparam name="getdata.address2" default="">
<cfparam name="getdata.city" default="">
<cfparam name="getdata.state" default="">
<cfparam name="getdata.zip" default="">
<cfparam name="getdata.country" default="">
</cfif>
<cfif parameterexists(session.id) and parameterexists(session.accesslevel) and parameterexists(session.member)>
<cfelse>
<Cfoutput>Purchased before? <a href="previewlogin.cfm?refer=purchasecoupon.cfm?couponid=#url.couponid#">click here to login!</a></Cfoutput><p>
</cfif>
<font size=-1 color="black"><br>
For customer service and sales info, <a href="customerservice.cfm">click here</a>.</font>
<cfform action="purchasecoupon.cfm?couponid=#url.couponid#&process=on" method="post" enctype="multipart/form-data">
<center><br>
<table cellspacing=0 cellpadding=2 border=0>
<tr><td>
<b><font SIZE="-1" color="25408d">First Name:</font></b>
</td><td>
<cfinput NAME="firstname" SIZE="25" required="Yes" message="You must provide your first name" value="#getdata.firstname#">
</td></tr>
<tr><td>
<b><font SIZE="-1" color="25408d">Last Name:</font></b>
</td><td>
<cfinput NAME="lastname" SIZE="25" required="Yes" message="You must provide your last name" value="#getdata.lastname#">
</td></tr>
<tr><td>
<b><font SIZE="-1" color="25408d">Your Email Address:</font></b>
</td><td>
<cfinput NAME="email" SIZE="25" required="Yes" message="You must provide your email address" value="#getdata.email#">
</td></tr>
<tr><td>
<b><font SIZE="-1" color="25408d">Confirm Email Address:</font></b>
</td><td>
<cfinput NAME="email2" SIZE="25" required="Yes" message="You must confirm your email address" value="#getdata.email#">
</td></tr>
<tr><td>
<b><font SIZE="-1" color="25408d">Password:</font></b>
</td><td>
<cfinput NAME="password" SIZE="25" required="No" >
</td></tr>
<tr><td>
<b><font SIZE="-1" color="25408d">Mobile Phone:</font></b>
</td><td>
<cfinput NAME="mobilephone" SIZE="25" required="Yes" message="You must enter your phone" value="#getdata.mobilephone#">
</td></tr>
<tr><td>
<b><font SIZE="-1" color="25408d">Address:</font></b>
</td><td>
<cfinput NAME="address" SIZE="25" required="Yes" message="You must enter your address" value="#getdata.address#">
</td></tr>
<tr><td>
<b><font SIZE="-1" color="25408d">City:</font></b>
</td><td>
<cfinput NAME="city" SIZE="25" required="Yes" message="You must enter your city" value="#getdata.city#">
</td></tr>
<tr><td>
<b><font SIZE="-1" color="25408d">State:</font></b>
</td><td>
<cfinput NAME="state" SIZE="3" required="Yes" message="You must enter your state" value="#getdata.state#">
</td></tr>
<tr><td>
<b><font SIZE="-1" color="25408d">Zip:</font></b>
</td><td>
<cfinput NAME="zip" SIZE="25" required="Yes" message="You must enter your zip code" value="#getdata.zip#">
</td></tr>
<tr><td>
<b><font SIZE="-1" color="25408d">Country:</font></b>
</td><td>
<select name="country" SIZE="1">
<cfoutput><option value="#getdata.country#">#getdata.country#</option></cfoutput>
<option value="US" >United States
<option value="AF" >Afghanistan
<option value="AL" >Albania
<option value="DZ" >Algeria
<option value="AS" >American Samoa
<option value="AD" >Andorra
<option value="AO" >Angola
<option value="AI" >Anguilla
<option value="AQ" >Antarctica
<option value="AG" >Antigua and Barbuda
<option value="AR" >Argentina
<option value="AM" >Armenia
<option value="AW" >Aruba
<option value="AU" >Australia
<option value="AT" >Austria
<option value="AZ" >Azerbaijan
<option value="BS" >Bahamas
<option value="BH" >Bahrain
<option value="BD" >Bangladesh
<option value="BB" >Barbados
<option value="BY" >Belarus
<option value="BE" >Belgium
<option value="BZ" >Belize
<option value="BJ" >Benin
<option value="BM" >Bermuda
<option value="BT" >Bhutan
<option value="BO" >Bolivia
<option value="BA" >Bosnia and Herzegowina
<option value="BW" >Botswana
<option value="BV" >Bouvet Island
<option value="BR" >Brazil
<option value="IO" >British Indian Ocean Territory
<option value="BN" >Brunei Darussalam
<option value="BG" >Bulgaria
<option value="BF" >Burkina Faso
<option value="BI" >Burundi
<option value="KH" >Cambodia
<option value="CM" >Cameroon
<option value="CA" >Canada
<option value="CV" >Cape Verde
<option value="KY" >Cayman Islands
<option value="CF" >Central African Republic
<option value="TD" >Chad
<option value="CL" >Chile
<option value="CN" >China
<option value="CX" >Christmas Island
<option value="CC" >Cocos (Keeling) Islands
<option value="CO" >Colombia
<option value="KM" >Comoros
<option value="CG" >Congo
<option value="CK" >Cook Islands
<option value="CR" >Costa Rica
<option value="CI" >Cote D'Ivoire
<option value="HR" >Croatia (local name: Hrvatska)
<option value="CU" >Cuba
<option value="CY" >Cyprus
<option value="CZ" >Czech Republic
<option value="DK" >Denmark
<option value="DJ" >Djibouti
<option value="DM" >Dominica
<option value="DO" >Dominican Republic
<option value="TP" >East Timor
<option value="EC" >Ecuador
<option value="EG" >Egypt
<option value="SV" >El Salvador
<option value="GQ" >Equatorial Guinea
<option value="ER" >Eritrea
<option value="EE" >Estonia
<option value="ET" >Ethiopia
<option value="FK" >Falkland Islands (Malvinas)
<option value="FO" >Faroe Islands
<option value="FJ" >Fiji
<option value="FI" >Finland
<option value="FR" >France
<option value="FX" >France, Metropolitan
<option value="GF" >French Guiana
<option value="PF" >French Polynesia
<option value="TF" >French Southern Territories
<option value="GA" >Gabon
<option value="GM" >Gambia
<option value="GE" >Georgia
<option value="DE" >Germany
<option value="GH" >Ghana
<option value="GI" >Gibraltar
<option value="GR" >Greece
<option value="GL" >Greenland
<option value="GD" >Grenada
<option value="GP" >Guadeloupe
<option value="GU" >Guam
<option value="GT" >Guatemala
<option value="GN" >Guinea
<option value="GW" >Guinea-Bissau
<option value="GY" >Guyana
<option value="HT" >Haiti
<option value="HM" >Heard and Mc Donald Islands
<option value="HN" >Honduras
<option value="HK" >Hong Kong
<option value="HU" >Hungary
<option value="IS" >Iceland
<option value="IN" >India
<option value="ID" >Indonesia
<option value="IR" >Iran (Islamic Republic of)
<option value="IQ" >Iraq
<option value="IE" >Ireland
<option value="IL" >Israel
<option value="IT" >Italy
<option value="JM" >Jamaica
<option value="JP" >Japan
<option value="JO" >Jordan
<option value="KZ" >Kazakhstan
<option value="KE" >Kenya
<option value="KI" >Kiribati
<option value="KP" >Korea, Democratic Republic of
<option value="KR" >Korea, Republic of
<option value="KW" >Kuwait
<option value="KG" >Kyrgyzstan
<option value="LA" >Lao Fan's Democratic Republic
<option value="LV" >Latvia
<option value="LB" >Lebanon
<option value="LS" >Lesotho
<option value="LR" >Liberia
<option value="LY" >Libyan Arab Jamahiriya
<option value="LI" >Liechtenstein
<option value="LT" >Lithuania
<option value="LU" >Luxembourg
<option value="MO" >Macau
<option value="MK" >Macedonia
<option value="MG" >Madagascar
<option value="MW" >Malawi
<option value="MY" >Malaysia
<option value="MV" >Maldives
<option value="ML" >Mali
<option value="MT" >Malta
<option value="MH" >Marshall Islands
<option value="MQ" >Martinique
<option value="MR" >Mauritania
<option value="MU" >Mauritius
<option value="YT" >Mayotte
<option value="MX" >Mexico
<option value="FM" >Micronesia, Federated States of
<option value="MD" >Moldova, Republic of
<option value="MC" >Monaco
<option value="MN" >Mongolia
<option value="MS" >Montserrat
<option value="MA" >Morocco
<option value="MZ" >Mozambique
<option value="MM" >Myanmar
<option value="NA" >Namibia
<option value="NR" >Nauru
<option value="NP" >Nepal
<option value="NL" >Netherlands
<option value="AN" >Netherlands Antilles
<option value="NC" >New Caledonia
<option value="NZ" >New Zealand
<option value="NI" >Nicaragua
<option value="NE" >Niger
<option value="NG" >Nigeria
<option value="NU" >Niue
<option value="NF" >Norfolk Island
<option value="MP" >Northern Mariana Islands
<option value="NO" >Norway
<option value="OM" >Oman
<option value="PK" >Pakistan
<option value="PW" >Palau
<option value="PA" >Panama
<option value="PG" >Papua New Guinea
<option value="PY" >Paraguay
<option value="PE" >Peru
<option value="PH" >Philippines
<option value="PN" >Pitcairn
<option value="PL" >Poland
<option value="PT" >Portugal
<option value="PR" >Puerto Rico
<option value="QA" >Qatar
<option value="RE" >Reunion
<option value="RO" >Romania
<option value="RU" >Russian Federation
<option value="RW" >Rwanda
<option value="KN" >Saint Kitts and Nevis
<option value="LC" >Saint Lucia
<option value="VC" >Saint Vincent and the Grenadines
<option value="WS" >Samoa
<option value="SM" >San Marino
<option value="ST" >Sao Tome and Principe
<option value="SA" >Saudi Arabia
<option value="SN" >Senegal
<option value="SC" >Seychelles
<option value="SL" >Sierra Leone
<option value="SG" >Singapore
<option value="SK" >Slovakia (Slovak Republic)
<option value="SI" >Slovenia
<option value="SB" >Solomon Islands
<option value="SO" >Somalia
<option value="ZA" >South Africa
<option value="ES" >Spain
<option value="LK" >Sri Lanka
<option value="SH" >St. Helena
<option value="PM" >St. Pierre and Miquelon
<option value="SD" >Sudan
<option value="SR" >Suriname
<option value="SJ" >Svalbard and Jan Mayen Islands
<option value="SZ" >Swaziland
<option value="SE" >Sweden
<option value="CH" >Switzerland
<option value="SY" >Syrian Arab Republic
<option value="TW" >Taiwan
<option value="TJ" >Tajikistan
<option value="TZ" >Tanzania, United Republic of
<option value="TH" >Thailand
<option value="TG" >Togo
<option value="TK" >Tokelau
<option value="TO" >Tonga
<option value="TT" >Trinidad and Tobago
<option value="TN" >Tunisia
<option value="TR" >Turkey
<option value="TM" >Turkmenistan
<option value="TC" >Turks and Caicos Islands
<option value="TV" >Tuvalu
<option value="UG" >Uganda
<option value="UA" >Ukraine
<option value="AE" >United Arab Emirates
<option value="GB" >United Kingdom
<option value="UY" >Uruguay
<option value="UZ" >Uzbekistan
<option value="VU" >Vanuatu
<option value="VA" >Vatican City State (Holy See)
<option value="VE" >Venezuela
<option value="VN" >Vietnam
<option value="VG" >Virgin Islands (British)
<option value="VI" >Virgin Islands (U.S.)
<option value="WF" >Wallis And Futuna Islands
<option value="EH" >Western Sahara
<option value="YE" >Yemen
<option value="YU" >Yugoslavia
<option value="ZR" >Zaire
<option value="ZM" >Zambia
<option value="ZW" >Zimbabwe
</select>
</td></tr>
<Cfoutput query="getcoupon">
<Cfif normalpriceadults is not ''>
<tr>
<Td><b><font SIZE="-1" color="25408d">Adult Tickets $#specialpriceadults#:</Td>
<td>
<Select name="adultsquantity">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
</Select>
</td>
</tr>
</Cfif>
<Cfif normalpricekids is not ''>
<tr>
<Td><b><font SIZE="-1" color="25408d">Kids Tickets $#specialpricekids#: </Td>
<td>
<Select name="kidsquantity">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
</Select>
</td>
</tr>
</Cfif>
<Cfif normalpriceseniors is not ''>
<tr>
<Td><b><font SIZE="-1" color="25408d">Seniors Tickets $#specialpriceseniors#
</td>
<td>
<Select name="seniorquantity">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
</Select>
</td></tr>
</Cfif>
<Cfif otherprice is not ''>
<tr>
<Td><b><font SIZE="-1" color="25408d">#otherprice# $#specialprice#</td>
<td>
<Select name="otherquantity">
<option value="0">0</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
<option value="6">6</option>
<option value="7">7</option>
<option value="8">8</option>
</Select>
</td></tr>
</Cfif>
<tr><td>
<b><font SIZE="-1" color="25408d">Credit Card Type:</font></b>
</td><td>
<select name="cctype">
<option value="American Express">American Express</option>
<option value="Mastercard">American Express</option>
<option value="Visa">Visa</option>
<option value="Discover">Discover</option>
</td></tr>
<tr><td>
<b><font SIZE="-1" color="25408d">Credit Card Number:</font></b>
</td><td>
<cfinput NAME="ccnum" SIZE="25" required="yes" message="You Must Enter Your Credit Card Number"> </td></tr>
<tr><td>
<b><font SIZE="-1" color="25408d">Expiration Date (MMYY):</font></b>
</td><td>
<cfinput NAME="ccexpire" SIZE="20" required="yes" message="You Must Enter Your Expiration Date" placeholder="MMYY">
</td></tr>
</Cfoutput>
<tr><td colspan="2">
<input type="checkbox" name="saver" checked> Keep my login information for future purchases. We will not retain your cc information.
<p>
<input type="checkbox" name="subber" checked> Receive future invitations for savings from local businesses
<p>
</td></tr>
</table><br>
<center><input type="submit" Value="Purchase Now"></center>
</cfform>
</Cfif>
</Td></tr></table>
</center>
</body>
</html