Ravens PHP Scripts: Forums
 

 

View next topic
View previous topic
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP
Author Message
Donovan
Client



Joined: Oct 07, 2003
Posts: 735
Location: Ohio

PostPosted: Tue Jul 10, 2007 9:31 pm Reply with quote

What I am working on is a Swim Team Registration Page. I want to give one parent the option of registering all their children on the same page. The issue is if I have the option of allowing 4 or 5 swimmers on the same form I get a real mess in naming conventions.

Such as:


Code:
<tr>

                     <td colspan="6"><span class="subheaderText">1st Swimmers Information</span></td>
                   </tr>
                   <tr>
                     <td colspan="6"><hr noshade="noshade" size="1" /></td>
                   </tr>
                   <tr>
                     <td align="right"><img src="images/spacer.gif" height="1" width="246" /></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td><img src="images/spacer.gif" height="1" width="8" /></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>

                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td></td>
                   </tr>
                   <tr>
                     <td align="right"><span class="bodyText"><b>Swimmers First Name </b></span></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td><span class="bodyText"><img src="images/2arrow.gif" width="12" height="12" alt="required" /></span></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td><input name="1st_swimmer_first_name" type="text" class="textField" id="1st_swimmer_first_name" value="" size="45" /></td>
                   </tr>
                   <tr>
                     <td align="right"><span class="bodyText"><b>Swimmers Last Name </b></span></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td><span class="bodyText"><img src="images/2arrow.gif" width="12" height="12" alt="required" /></span></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td><input name="1st_swimmers_last_name" type="text" class="textField" id="1st_swimmer_last_name" value="" size="45" /></td>
                   </tr>
                   <tr>
                           <td align="right"><span class="bodyText"><b>Gender</b></span></td>
                     <td><img src="images/spacer.gif" alt="spacer" width="5" height="1" /></td>
                     <td><span class="bodyText"><img src="images/2arrow.gif" width="12" height="12" alt="required" /></span></td>
                     <td><img src="images/spacer.gif" alt="spacer" width="5" height="1" /></td>
                     <td><img src="images/spacer.gif" alt="spacer" width="5" height="1" /></td>
                     <td><p class="bodyText">
                               <input name="boy" value="boy" type="radio" />
                               <span class="style2">Boy</span>
                       <input name="girl" value="girl" type="radio" />
                               <span class="style2">Girl</span></p></td>
                     </tr>
                   <tr>
                           <td align="right"><span class="bodyText"><b>Birthday</b></span></td>
                     <td><img src="images/spacer.gif" alt="spacer" width="5" height="1" /></td>
                     <td><span class="bodyText"><img src="images/2arrow.gif" width="12" height="12" alt="required" /></span></td>
                     <td><img src="images/spacer.gif" alt="spacer" width="5" height="1" /></td>
                     <td><img src="images/spacer.gif" alt="spacer" width="5" height="1" /></td>
                     <td><input name="1st_swimmer_birthday" type="text" class="textField" id="1st_swimmer_birthday" value="Used to compute age" size="45" /></td>
                     </tr>
                     <tr>
                     <td colspan="6"><span class="subheaderText">2nd Swimmers Information</span></td>
                   </tr>
                   <tr>
                     <td colspan="6"><hr noshade="noshade" size="1" /></td>
                   </tr>
                   <tr>
                     <td align="right"><img src="images/spacer.gif" height="1" width="246" /></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td><img src="images/spacer.gif" height="1" width="8" /></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>

                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td></td>
                   </tr>
                   <tr>
                     <td align="right"><span class="bodyText"><b>Swimmers First Name </b></span></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td><span class="bodyText"><img src="images/2arrow.gif" width="12" height="12" alt="required" /></span></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td><input name="2nd_swimmer_first_name" type="text" class="textField" id="2nd_swimmer_first_name" value="" size="45" /></td>
                   </tr>
                   <tr>
                     <td align="right"><span class="bodyText"><b>Swimmers Last Name </b></span></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td><span class="bodyText"><img src="images/2arrow.gif" width="12" height="12" alt="required" /></span></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td><img src="images/spacer.gif" height="1" width="5" /></td>
                     <td><input name="2nd_swimmers_last_name" type="text" class="textField" id="2nd_swimmer_last_name" value="" size="45" /></td>
                   </tr>
                   <tr>
                           <td align="right"><span class="bodyText"><b>Gender</b></span></td>
                     <td><img src="images/spacer.gif" alt="spacer" width="5" height="1" /></td>
                     <td><span class="bodyText"><img src="images/2arrow.gif" width="12" height="12" alt="required" /></span></td>
                     <td><img src="images/spacer.gif" alt="spacer" width="5" height="1" /></td>
                     <td><img src="images/spacer.gif" alt="spacer" width="5" height="1" /></td>
                     <td><p class="bodyText">
                               <input name="boy" value="boy" type="radio" />
                               <span class="style2">Boy</span>
                       <input name="girl" value="girl" type="radio" />
                               <span class="style2">Girl</span></p></td>
                     </tr>
                   <tr>
                           <td align="right"><span class="bodyText"><b>Birthday</b></span></td>
                     <td><img src="images/spacer.gif" alt="spacer" width="5" height="1" /></td>
                     <td><span class="bodyText"><img src="images/2arrow.gif" width="12" height="12" alt="required" /></span></td>
                     <td><img src="images/spacer.gif" alt="spacer" width="5" height="1" /></td>
                     <td><img src="images/spacer.gif" alt="spacer" width="5" height="1" /></td>
                     <td><input name="2nd_swimmer_birthday" type="text" class="textField" id="2nd_swimmer_birthday" value="Used to compute age" size="45" /></td>
                     </tr>


Anybody have a better idea?

And how do I handle naming conventions for gender using radio buttons?
 
View user's profile Send private message Visit poster's website ICQ Number
Gremmie
Former Moderator in Good Standing



Joined: Apr 06, 2006
Posts: 2415
Location: Iowa, USA

PostPosted: Wed Jul 11, 2007 7:05 am Reply with quote

I would use arrays for the names. See

http://www.php.net/manual/en/faq.html.php#faq.html.arrays

_________________
Only registered users can see links on this board! Get registered or login! - An Event Calendar for PHP-Nuke
Only registered users can see links on this board! Get registered or login! - A Google Maps Nuke Module 
View user's profile Send private message
Display posts from previous:       
Post new topic   Reply to topic    Ravens PHP Scripts And Web Hosting Forum Index -> PHP

View next topic
View previous topic
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum


Powered by phpBB © 2001-2007 phpBB Group
All times are GMT - 6 Hours
 
Forums ©