Hey Guys,
I am having problems with passing information from one form on one page to another form on another page. While passing the information I am also querying information about the IDs that are being passed. What I am trying to do is have a person type in the id numbers that they want and have them pass to another page showing the information of each ID that was typed in. Also The user does not need to typee an ID in every form. Here is what I have right now:

This is the form page:
<form action="checkoutprocess1.cfm" name="checkoutprocess" method="post">



<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td width="150">Student ID:</td><td><input type="text" name="stufacID" maxlength="15"> </td>
</tr>
<tr>
<td width="150">Equipment ID: #1</td><td><input type="text" name="equipid1" maxlength="15"> </td>
</tr>
<tr>
<td width="150">Equipment ID: #2</td><td><input type="text" name="equipID2" maxlength="15" > </td>
</tr>
<tr>
<td width="150">Equipment ID: #3</td><td><input type="text" name="equipID3" maxlength="15"> </td>
</tr>
<tr>
<td width="150">Equipment ID: #4</td><td><input type="text" name="equipID4" maxlength="15"> </td>
</tr>
<tr>
<td width="150">Equipment ID: #5</td><td><input type="text" name="equipID5" maxlength="15"> </td>
</tr>
<tr>
<td width="150">Equipment ID: #6</td><td><input type="text" name="equipID6" maxlength="15"> </td>
</tr>
<tr>
<td width="150">Equipment ID: #7</td><td><input type="text" name="equipID7" maxlength="15"> </td>
</tr>
<tr>
<td></td><td><input type="submit" value="Enter"></td>
</tr>
</table>
</form>

And this is the second page where I want the equipment IDS to show and show what type of equipment it is

<cfquery datasource="#datasource#" name="stufac">
select stufac.f_name, stufac.l_name, stufac.stufacid
from stufac
where stufac.stufacid = #stufacid#
</cfquery>

<cfquery datasource="#datasource#" name="equiptype">
select equipment.equiptype, equipment.equipid
from equipment
where equipment.equipid = #equipid1#
</cfquery>

<cfoutput query="stufac">
<tr>
<td>Name: <b>#f_name#&nbsp;&nbsp;#l_name#</b></td>

<td>Student ID: <b>#stufacID#</b></td>

</tr>
</cfoutput>
<tr>
<td><br></td>
</tr>
<cfoutput query="equiptype">
<tr>
<td>Equipment ID:#equipid1#</td>

<td colspan="4">Equipment Type: #equiptype#</td>
</tr>
<tr>
<td>Equipment ID:#equipid2#</td>

<td colspan="4">Equipment Type: #equiptype#</td>
</tr>
<tr>
<td>Equipment ID:#equipid3#</td>

<td colspan="4">Equipment Type: #equiptype#</td>
</tr>
<tr>
<td>Equipment ID:#equipid4#</td>

<td colspan="4">Equipment Type: #equiptype#</td>
</tr>
<tr>
<td>Equipment ID:#equipid5#</td>

<td colspan="4">Equipment Type: #equiptype#</td>
</tr>
<tr>
<td>Equipment ID:#equipid6#</td>

<td colspan="4">Equipment Type: #equiptype#</td>
</tr>
<tr>
<td>Equipment ID:#equipid7#</td>

<td colspan="4">Equipment Type: #equiptype#</td>
</tr>
</cfoutput>



I hope this makes sense.