Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

"dynamic" html page

Status
Not open for further replies.

chs22

MIS
May 19, 2003
5
0
0
US
So I have an html form and am using Perl Builder 2.0 to create a script to gather user-entered information and create a dynamic html page that will update in "realtime". It's asking me for an html page that will serve as a model for the results. I need to know how to create this model. I realize that somwhere I'll need to put field names (i.e. $email, $name, etc.) But I just don't know how to code an html page to do this.... anyone?

Thanks,

Caleb
 
tell us what you want, visually and one of us will be able to create it.
I'm guessing all you need is some headers and a table to layour the information in an orderly fashion?

You could create something like that in MS word, although the code would be awful. Easily corrected though.




 
Yes -- that's what I'm looking for, an orderly table with a header. BTW, here's the form... I know there's a lot of fields there, but if I you could just give me a general template, I could probably figure it out... Thanks!
 
Hi,

Long posting follows:::

I have just stuck the data in tables, removed all the obsolete font tags and cleaned the code a bit.
Hope it's useful.
Just copy n´ paste and save as a html page. I have put borders on the tables so you can more easily see the structure, just change the border of each table to 0 to remove.
#############################

<html>
<head>
<meta http-equiv=&quot;Content-Type&quot;
content=&quot;text/html; charset=windows-1252&quot;>
<meta http-equiv=&quot;Content-Language&quot; content=&quot;en-us&quot;>
<title>New Page 3</title>
<style type=&quot;text/css&quot;>
<!--
body {font-family:&quot;Century Gothic&quot;; color:#FFCC00; background: #000000;}
-->
</style>
</head>
<body>
WHAT ARE THESE FOR? DELETE THEM?<br> &lt;input type=&quot;hidden&quot;
name=&quot;formname&quot; value=&quot;trading_form&quot;&gt;<br>
&lt;form action=&quot;method=&quot;POST&quot;&gt;


<h1 align=&quot;center&quot;>DMB Summer 2003 Ticket Trading Form</h1>

<p align=&quot;center&quot;><img alt=&quot;&quot; border=&quot;0&quot;
src=&quot;tinsley%20(Custom).gif&quot; width=&quot;89&quot; height=&quot;120&quot;><img
border=&quot;0&quot; src=&quot;olyconcerts%20(Custom).jpg&quot; alt=&quot;&quot; width=&quot;80&quot;
height=&quot;120&quot;><img border=&quot;0&quot; src=&quot;dmband%20(Custom).jpg&quot; alt=&quot;&quot;
width=&quot;160&quot; height=&quot;132&quot;><img alt=&quot;&quot; border=&quot;0&quot;
src=&quot;dmb%20(Custom).jpg&quot; width=&quot;160&quot; height=&quot;127&quot;><img alt=&quot;&quot;
border=&quot;0&quot; src=&quot;dmb4%20(Custom).jpg&quot; width=&quot;160&quot;
height=&quot;120&quot;><img alt=&quot;&quot; border=&quot;0&quot;
src=&quot;davematthews%20(Custom).jpg&quot; width=&quot;120&quot; height=&quot;120&quot;><img
border=&quot;0&quot; alt=&quot;&quot; src=&quot;airdave-by_sammy%20(Custom).gif&quot;
width=&quot;87&quot; height=&quot;120&quot;><img alt=&quot;&quot; border=&quot;0&quot;
src=&quot;9608.matthews1%20(Custom).gif&quot; width=&quot;98&quot;
height=&quot;120&quot;></p>

<hr>
<p><b>If you're looking to simply buy tickets, just select the
shows you need and specify that you're looking to buy in the
description box.  Same goes for if you're selling tickets --
although it may be easier to just post on the boards to
buy/sell.</b></p>

<form action=&quot;method=&quot;post&quot;>
<table border=&quot;2&quot; summary=&quot;&quot; cellpadding=&quot;2&quot; cellspacing=&quot;2&quot;
align=&quot;center&quot;>
<tr>
<td colspan=&quot;2&quot;>
<h3>Select the shows you have:</h3>
</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_6/17: Columbus, OH, Germain Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>6/17: Columbus, OH, Germain Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_6/18: Columbus, OH, Germain Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>6/18: Columbus, OH, Germain Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_6/20: Darien, NY, Darien Lake PAC&quot; value=&quot;ON&quot;></td>
<td>6/20: Darien, NY, Darien Lake PAC</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_6/21: Cuyahoga Falls, OH, Blossom Music Center&quot;
value=&quot;ON&quot;></td>
<td>6/21: Cuyahoga Falls, OH, Blossom Music Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_6/23: Cincinnati, OH, Riverbend Music Center&quot;
value=&quot;ON&quot;></td>
<td>6/23: Cincinnati, OH, Riverbend Music Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_6/24: Cincinnati, OH, Riverbend Music Center&quot;
value=&quot;ON&quot;></td>
<td>6/24: Cincinnati, OH, Riverbend Music Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_6/26: Burgettstown, PA, Post-Gazette Pavilion&quot;
value=&quot;ON&quot;></td>
<td>6/26: Burgettstown, PA, Post-Gazette Pavilion</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_6/27: Burgettstown, PA, Post-Gazette Pavilion&quot;
value=&quot;ON&quot;></td>
<td>6/27: Burgettstown, PA, Post-Gazette Pavilion</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_6/29: Noblesville, IN, Verizon Wireless Center&quot;
value=&quot;ON&quot;></td>
<td>6/29: Noblesville, IN, Verizon Wireless Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_6/30: Noblesville, IN, Verizon Wireless Center &quot;
value=&quot;ON&quot;></td>
<td>6/30: Noblesville, IN, Verizon Wireless Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/2: Auburn Hills, MI, Palace of Auburn Hills&quot;
value=&quot;ON&quot;></td>
<td>7/2: Auburn Hills, MI, Palace of Auburn Hills</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/3: Tinley Park, IL, Tweeter Center&quot;
value=&quot;ON&quot;></td>
<td>7/3: Tinley Park, IL, Tweeter Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/5: East Troy, WI, Alpine Valley Music Theater&quot;
value=&quot;ON&quot;></td>
<td>7/5: East Troy, WI, Alpine Valley Music Theater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/6: East Troy, WI, Alpine Valley Music Theater&quot;
value=&quot;ON&quot;></td>
<td>7/6: East Troy, WI, Alpine Valley Music Theater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/9: Minneapolis, Target Center&quot; value=&quot;ON&quot;></td>
<td>7/9: Minneapolis, Target Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/10: Maryland Heights, MO, UMB Bank Pavilion&quot;
value=&quot;ON&quot;></td>
<td>7/10: Maryland Heights, MO, UMB Bank Pavilion</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/12: Bonner Springs, KS, Verizon Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>7/12: Bonner Springs, KS, Verizon Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/13: Little Rock, AR, Alltel Arena&quot;
value=&quot;ON&quot;></td>
<td>7/13: Little Rock, AR, Alltel Arena</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/15: Oklahoma City, Ford Center&quot; value=&quot;ON&quot;></td>
<td>7/15: Oklahoma City, Ford Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/16: Houston, Cynthia Woods Mitchell Pavilion&quot;
value=&quot;ON&quot;></td>
<td>7/16: Houston, Cynthia Woods Mitchell Pavilion</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/18: Dallas, American Airlines Center&quot;
value=&quot;ON&quot;></td>
<td>7/18: Dallas, American Airlines Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/19: Selma, TX, Verizon Wireless Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>7/19: Selma, TX, Verizon Wireless Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot; name=&quot;have_7/21: Denver, Pepsi Center&quot;
value=&quot;ON&quot;></td>
<td>7/21: Denver, Pepsi Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/22: West Valley City, UT, West Valley Amp.&quot;
value=&quot;ON&quot;></td>
<td>7/22: West Valley City, UT, West Valley Amp.</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/24: Phoenix, AZ, Cricket Pavilion&quot;
value=&quot;ON&quot;></td>
<td>7/24: Phoenix, AZ, Cricket Pavilion</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/26: Los Angeles, CA, Home Depot Center&quot;
value=&quot;ON&quot;></td>
<td>7/26: Los Angeles, CA, Home Depot Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/27: Los Angeles, CA, Home Depot Center&quot;
value=&quot;ON&quot;></td>
<td>7/27: Los Angeles, CA, Home Depot Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/29: Chula Vista, CA, Coors Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>7/29: Chula Vista, CA, Coors Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_7/30: Marysville, CA, Sleep Train Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>7/30: Marysville, CA, Sleep Train Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_8/1: Mountain View, CA, Shoreline Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>8/1: Mountain View, CA, Shoreline Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_8/2: Mountain View, CA, Shoreline Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>8/2: Mountain View, CA, Shoreline Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_8/4: Portland, OR, Rose Garden Arena&quot;
value=&quot;ON&quot;></td>
<td>8/4: Portland, OR, Rose Garden Arena</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_8/5: Vancouver, General Motors Place&quot;
value=&quot;ON&quot;></td>
<td>8/5: Vancouver, General Motors Place</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_8/7: George, WA, Gorge Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>8/7: George, WA, Gorge Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_8/8: George, WA, Gorge Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>8/8: George, WA, Gorge Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_8/24: East Rutherford, NJ, Cont. Airlines Arena&quot;
value=&quot;ON&quot;></td>
<td>8/24: East Rutherford, NJ, Cont. Airlines Arena</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_8/25: East Rutherford, NJ, Cont. Airlines Arena&quot;
value=&quot;ON&quot;></td>
<td>8/25: East Rutherford, NJ, Cont. Airlines Arena</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_8/27: Saratoga Springs, NY, Saratoga PAC&quot;
value=&quot;ON&quot;></td>
<td>8/27: Saratoga Springs, NY, Saratoga PAC</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_8/28: Saratoga Springs, NY, Saratoga PAC&quot;
value=&quot;ON&quot;></td>
<td>8/28: Saratoga Springs, NY, Saratoga PAC</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_8/30: Hartford, CT, Meadows Music Center&quot;
value=&quot;ON&quot;></td>
<td>8/30: Hartford, CT, Meadows Music Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_8/31: Hartford, CT, Meadows Music Center&quot;
value=&quot;ON&quot;></td>
<td>8/31: Hartford, CT, Meadows Music Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot; name=&quot;have_9/2: Montreal, Bell Center&quot;
value=&quot;ON&quot;></td>
<td>9/2: Montreal, Bell Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_9/3: Toronto, Ontario Place&quot; value=&quot;ON&quot;></td>
<td>9/3: Toronto, Ontario Place</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_9/5: Camden, NJ, Tweeter Center&quot; value=&quot;ON&quot;></td>
<td>9/5: Camden, NJ, Tweeter Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_9/6: Camden, NJ, Tweeter Center&quot; value=&quot;ON&quot;></td>
<td>9/6: Camden, NJ, Tweeter Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_9/8: Mansfield, MA, Tweeter Center&quot; value=&quot;ON&quot;></td>
<td>9/8: Mansfield, MA, Tweeter Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_9/9: Mansfield, MA, Tweeter Center&quot; value=&quot;ON&quot;></td>
<td>9/9: Mansfield, MA, Tweeter Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_9/11: Hershey, PA, Hersheypark Stadium&quot;
value=&quot;ON&quot;></td>
<td>9/11: Hershey, PA, Hersheypark Stadium</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_9/13: Bristow, VA, Nissan Pavilion&quot; value=&quot;ON&quot;></td>
<td>9/13: Bristow, VA, Nissan Pavilion</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_9/14: Virginia Beach, VA, Verizon Wireless Amp.&quot;
value=&quot;ON&quot;></td>
<td>9/14: Virginia Beach, VA, Verizon Wireless Amp.</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_9/16: Charlotte, NC, Verizon Wireless Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>9/16: Charlotte, NC, Verizon Wireless Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_9/17: Raleigh, NC, Alltel Pavilion&quot; value=&quot;ON&quot;></td>
<td>9/17: Raleigh, NC, Alltel Pavilion</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_9/19: Antioch, TN, AmSouth Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>9/19: Antioch, TN, AmSouth Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;have_9/20: Atlanta, HiFi Buys Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>9/20: Atlanta, HiFi Buys Amphitheater</td>
</tr>
</table>

<br>
<table border=&quot;2&quot; summary=&quot;&quot; cellpadding=&quot;2&quot; cellspacing=&quot;2&quot;
align=&quot;center&quot;>
<tr>
<td colspan=&quot;2&quot;>
<h3>Select the shows you need:</h3>
</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_6/17: Columbus, OH, Germain Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>6/17: Columbus, OH, Germain Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_6/18: Columbus, OH, Germain Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>6/18: Columbus, OH, Germain Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_6/20: Darien, NY, Darien Lake PAC&quot; value=&quot;ON&quot;></td>
<td>6/20: Darien, NY, Darien Lake PAC</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_6/21: Cuyahoga Falls, OH, Blossom Music Center&quot;
value=&quot;ON&quot;></td>
<td>6/21: Cuyahoga Falls, OH, Blossom Music Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_6/23: Cincinnati, OH, Riverbend Music Center&quot;
value=&quot;ON&quot;></td>
<td>6/23: Cincinnati, OH, Riverbend Music Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_6/24: Cincinnati, OH, Riverbend Music Center&quot;
value=&quot;ON&quot;></td>
<td>6/24: Cincinnati, OH, Riverbend Music Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_6/26: Burgettstown, PA, Post-Gazette Pavilion&quot;
value=&quot;ON&quot;></td>
<td>6/26: Burgettstown, PA, Post-Gazette Pavilion</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_6/27: Burgettstown, PA, Post-Gazette Pavilion&quot;
value=&quot;ON&quot;></td>
<td>6/27: Burgettstown, PA, Post-Gazette Pavilion</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_6/29: Noblesville, IN, Verizon Wireless Center&quot;
value=&quot;ON&quot;></td>
<td>6/29: Noblesville, IN, Verizon Wireless Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_6/30: Noblesville, IN, Verizon Wireless Center &quot;
value=&quot;ON&quot;></td>
<td>6/30: Noblesville, IN, Verizon Wireless Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/2: Auburn Hills, MI, Palace of Auburn Hills&quot;
value=&quot;ON&quot;></td>
<td>7/2: Auburn Hills, MI, Palace of Auburn Hills</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/3: Tinley Park, IL, Tweeter Center&quot;
value=&quot;ON&quot;></td>
<td>7/3: Tinley Park, IL, Tweeter Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/5: East Troy, WI, Alpine Valley Music Theater&quot;
value=&quot;ON&quot;></td>
<td>7/5: East Troy, WI, Alpine Valley Music Theater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/6: East Troy, WI, Alpine Valley Music Theater&quot;
value=&quot;ON&quot;></td>
<td>7/6: East Troy, WI, Alpine Valley Music Theater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/9: Minneapolis, Target Center&quot; value=&quot;ON&quot;></td>
<td>7/9: Minneapolis, Target Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/10: Maryland Heights, MO, UMB Bank Pavilion&quot;
value=&quot;ON&quot;></td>
<td>7/10: Maryland Heights, MO, UMB Bank Pavilion</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/12: Bonner Springs, KS, Verizon Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>7/12: Bonner Springs, KS, Verizon Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/13: Little Rock, AR, Alltel Arena&quot;
value=&quot;ON&quot;></td>
<td>7/13: Little Rock, AR, Alltel Arena</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/15: Oklahoma City, Ford Center&quot; value=&quot;ON&quot;></td>
<td>7/15: Oklahoma City, Ford Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/16: Houston, Cynthia Woods Mitchell Pavilion&quot;
value=&quot;ON&quot;></td>
<td>7/16: Houston, Cynthia Woods Mitchell Pavilion</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/18: Dallas, American Airlines Center&quot;
value=&quot;ON&quot;></td>
<td>7/18: Dallas, American Airlines Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/19: Selma, TX, Verizon Wireless Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>7/19: Selma, TX, Verizon Wireless Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot; name=&quot;need_7/21: Denver, Pepsi Center&quot;
value=&quot;ON&quot;></td>
<td>7/21: Denver, Pepsi Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/22: West Valley City, UT, West Valley Amp.&quot;
value=&quot;ON&quot;></td>
<td>7/22: West Valley City, UT, West Valley Amp.</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/24: Phoenix, AZ, Cricket Pavilion&quot;
value=&quot;ON&quot;></td>
<td>7/24: Phoenix, AZ, Cricket Pavilion</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/26: Los Angeles, CA, Home Depot Center&quot;
value=&quot;ON&quot;></td>
<td>7/26: Los Angeles, CA, Home Depot Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/27: Los Angeles, CA, Home Depot Center&quot;
value=&quot;ON&quot;></td>
<td>7/27: Los Angeles, CA, Home Depot Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/29: Chula Vista, CA, Coors Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>7/29: Chula Vista, CA, Coors Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_7/30: Marysville, CA, Sleep Train Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>7/30: Marysville, CA, Sleep Train Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_8/1: Mountain View, CA, Shoreline Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>8/1: Mountain View, CA, Shoreline Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_8/2: Mountain View, CA, Shoreline Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>8/2: Mountain View, CA, Shoreline Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_8/4: Portland, OR, Rose Garden Arena&quot;
value=&quot;ON&quot;></td>
<td>8/4: Portland, OR, Rose Garden Arena</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_8/5: Vancouver, General Motors Place&quot;
value=&quot;ON&quot;></td>
<td>8/5: Vancouver, General Motors Place</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_8/7: George, WA, Gorge Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>8/7: George, WA, Gorge Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_8/8: George, WA, Gorge Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>8/8: George, WA, Gorge Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_8/24: East Rutherford, NJ, Cont. Airlines Arena&quot;
value=&quot;ON&quot;></td>
<td>8/24: East Rutherford, NJ, Cont. Airlines Arena</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_8/25: East Rutherford, NJ, Cont. Airlines Arena&quot;
value=&quot;ON&quot;></td>
<td>8/25: East Rutherford, NJ, Cont. Airlines Arena</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_8/27: Saratoga Springs, NY, Saratoga PAC&quot;
value=&quot;ON&quot;></td>
<td>8/27: Saratoga Springs, NY, Saratoga PAC</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_8/28: Saratoga Springs, NY, Saratoga PAC&quot;
value=&quot;ON&quot;></td>
<td>8/28: Saratoga Springs, NY, Saratoga PAC</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_8/30: Hartford, CT, Meadows Music Center&quot;
value=&quot;ON&quot;></td>
<td>8/30: Hartford, CT, Meadows Music Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_8/31: Hartford, CT, Meadows Music Center&quot;
value=&quot;ON&quot;></td>
<td>8/31: Hartford, CT, Meadows Music Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot; name=&quot;need_9/2: Montreal, Bell Center&quot;
value=&quot;ON&quot;></td>
<td>9/2: Montreal, Bell Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_9/3: Toronto, Ontario Place&quot; value=&quot;ON&quot;></td>
<td>9/3: Toronto, Ontario Place</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_9/5: Camden, NJ, Tweeter Center&quot; value=&quot;ON&quot;></td>
<td>9/5: Camden, NJ, Tweeter Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_9/6: Camden, NJ, Tweeter Center&quot; value=&quot;ON&quot;></td>
<td>9/6: Camden, NJ, Tweeter Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_9/8: Mansfield, MA, Tweeter Center&quot; value=&quot;ON&quot;></td>
<td>9/8: Mansfield, MA, Tweeter Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_9/9: Mansfield, MA, Tweeter Center&quot; value=&quot;ON&quot;></td>
<td>9/9: Mansfield, MA, Tweeter Center</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_9/11: Hershey, PA, Hersheypark Stadium&quot;
value=&quot;ON&quot;></td>
<td>9/11: Hershey, PA, Hersheypark Stadium</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_9/13: Bristow, VA, Nissan Pavilion&quot; value=&quot;ON&quot;></td>
<td>9/13: Bristow, VA, Nissan Pavilion</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_9/14: Virginia Beach, VA, Verizon Wireless Amp.&quot;
value=&quot;ON&quot;></td>
<td>9/14: Virginia Beach, VA, Verizon Wireless Amp.</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_9/16: Charlotte, NC, Verizon Wireless Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>9/16: Charlotte, NC, Verizon Wireless Amphitheater</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_9/17: Raleigh, NC, Alltel Pavilion&quot; value=&quot;ON&quot;></td>
<td>9/17: Raleigh, NC, Alltel Pavilion</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_9/19: Antioch, TN, AmSouth Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>9/19: Antioch, TN, AmSouth Amphitheater</td>
</tr>


<tr>
<td><input type=&quot;CHECKBOX&quot;
name=&quot;need_9/20: Atlanta, HiFi Buys Amphitheater&quot;
value=&quot;ON&quot;></td>
<td>9/20: Atlanta, HiFi Buys Amphitheater</td>
</tr>
</table>

<br>
<table border=&quot;2&quot; summary=&quot;&quot; cellpadding=&quot;2&quot; cellspacing=&quot;2&quot;
align=&quot;center&quot;>
<tr>
<td colspan=&quot;2&quot;>
<h3>Type of trade:</h3>
</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot; name=&quot;trade11&quot; value=&quot;ON&quot;></td>
<td>1 : 1</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot; name=&quot;trade22&quot; value=&quot;ON&quot;></td>
<td>2 : 2</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot; name=&quot;trade21&quot; value=&quot;ON&quot;></td>
<td>2 : 1</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot; name=&quot;trade12&quot; value=&quot;ON&quot;></td>
<td>1 : 2</td>
</tr>

<tr>
<td><input type=&quot;CHECKBOX&quot; name=&quot;tradeother&quot; value=&quot;ON&quot;></td>
<td>Other (specify below)</td>
</tr>

<tr>
<td colspan=&quot;2&quot;>
<p>Brief description of seats:</p>
</td>
</tr>

<tr>
<td colspan=&quot;2&quot;><textarea name=&quot;desc&quot; rows=&quot;6&quot; cols=&quot;50&quot;></textarea></td>
</tr>
</table>

<br>
<br>


<table border=&quot;2&quot; summary=&quot;&quot; cellpadding=&quot;2&quot; cellspacing=&quot;2&quot;
align=&quot;center&quot;>
<tr>
<td colspan=&quot;2&quot;>
<h3>Please provide the following contact information:</h3>
</td>
</tr>

<tr>
<td align=&quot;right&quot;><em>Name</em></td>
<td><input name=&quot;Name&quot; size=&quot;32&quot;></td>
</tr>

<tr>
<td align=&quot;right&quot;><em>AIM Handle</em></td>
<td><input name=&quot;AIM&quot; size=&quot;32&quot;></td>
</tr>

<tr>
<td align=&quot;right&quot;><em>thebridge Handle</em></td>
<td><input name=&quot;bridge&quot; size=&quot;32&quot;></td>
</tr>

<tr>
<td align=&quot;right&quot;><em>antsmarching.org Handle</em></td>
<td><input name=&quot;ants&quot; size=&quot;32&quot;></td>
</tr>

<tr>
<td align=&quot;right&quot;><em>nancies.org Handle</em></td>
<td><input name=&quot;nancies&quot; size=&quot;32&quot;></td>
</tr>

<tr>
<td align=&quot;right&quot;><em>E-mail</em></td>
<td><input name=&quot;email&quot; size=&quot;32&quot;></td>
</tr>
</table>

<table border=&quot;2&quot; summary=&quot;&quot; cellpadding=&quot;2&quot; cellspacing=&quot;2&quot;
align=&quot;center&quot;>
<tr>
<td><input type=&quot;SUBMIT&quot; value=&quot;Submit Form&quot;
name=&quot;submit&quot;><input type=&quot;hidden&quot; value=&quot;PHORM_CONFIG&quot;
name=&quot;trading_form&quot;></td>
<td><input type=&quot;RESET&quot; value=&quot;Reset Form&quot;></td>
</tr>
</table>
</form>

<hr>
<h5>Author information goes here.<br>
Copyright © 1999 [OrganizationName]. All rights reserved.<br>
Revised: <!--WEBBOT BOT=TimeStamp
S-Type=&quot;EDITED&quot;
S-Format=&quot;%m/%d/%y&quot; startspan
-->05/21/03
<!--webbot bot=&quot;TimeStamp&quot; i-checksum=&quot;12630&quot; endspan -->
</h5>
</body>
</html>



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top