Insert List menu values to Mysql | Newbie | | Join Date: Jul 2007
Posts: 1
| |
Hi,
Please help me find out what wrong with my codes in inputting from my form to mysql database using drop down menu. Below is the codes I used. Only the drop down is not working but the "input text" are successfully adding data to mysql. I just try first using the month as drop down. The month data type I used in mysql database is varchar. Im new in PHP please help me. Thanks -
<?php /* Created on: 10/12/2006 */ ?>
-
<html>
-
<body>
-
<?php
-
include ('./header.php');
-
include ('./menu1.php');
-
if (isset($_POST['submit'])) { //handle the form
-
-
if ($dbc = mysql_connect ('localhost', 'root', 'jan03001')) {
-
-
if (!@mysql_select_db ('hris')) {
-
die ('<p>Could not select the database because: <b>' . mysql_error() . '</b></p>');
-
}
-
} else {
-
die ('<p>Could not could not connect to Mysql because: <b>' . mysql_error() . '</b></p>');
-
}
-
-
-
//define the query
-
$query = "INSERT INTO personlinfotbl2 (empid, firstname, lastname, bmonth) VALUES ('{$_POST[empid]}', '{$_POST['firstname']}', '{$_POST['lastname']}', '{$_POST['bmonth']}')";
-
-
//execute the query
-
if (mysql_query ($query)) {
-
print '<p> <center><font face="arial" color="red" size="3">The Personal Information entry has been added. Continue to add data. </font></center></p>';
-
} else {
-
print '<p> <center><font face="arial" color="red" size="3">Could not add the entry because: <b>" . mysql_error() . "<b>. The query was $query.</font></center></p>';
-
}
-
-
mysql_close();
-
}
-
-
//display the form
-
?>
-
<form action="add_personalinfo2.php" method="post">
-
<center>
-
<table width=44% align="center">
-
<tr>
-
-
<td colspan=3><b>Fill-up this form to add Personal Information</b></td>
-
</tr>
-
<tr>
-
<td>Employee Number: </td><td><input type="text" name="empid" size="28" maxsize="100" /></td>
-
</tr>
-
<tr>
-
<td>First Name: </td><td><input type="text" name="firstname" size="28" maxsize="100" /></td>
-
</tr>
-
<tr>
-
<td>Last Name: </td><td><input type="text" name="lastname" size="28" maxsize="100" /></td>
-
</tr>
-
<tr>
-
<td>Birth Date: </td>
-
<td>
-
<select name="month">
-
<option value="January">January</option>
-
<option value="February">February</option>
-
<option value="March">March</option>
-
<option value="April">April</option>
-
<option value="May">May</option>
-
<option value="June">June</option>
-
<option value="July">July</option>
-
<option value="August">August</option>
-
<option value="September">September</option>
-
<option value="October">October</option>
-
<option value="November">November</option>
-
<option value="December">December</option>
-
</select></td>
-
</tr>
-
<tr>
-
<td colspan=2><input type="submit" name="submit" value="Add to Personal Info Table" />
-
<input type='reset' name='reset' value='Reset'></td>
-
</tr>
-
-
</table>
-
</center>
-
-
</form>
-
<?php
-
include ('./footer.php');
-
?>
-
</body>
-
</html>
-
|  | Moderator | | Join Date: Jan 2007 Location: Colombo
Posts: 1,440
| | | re: Insert List menu values to Mysql
Hey,
Welcome to TSDN !
List menu name is month But In your corresponding $_POST var is bmonth
That's the problem. -Ajaxrand |  | Moderator | | Join Date: Jan 2007 Location: Colombo
Posts: 1,440
| | | re: Insert List menu values to Mysql
Thread Title changed
Ealier: Query re: drop down in php
Recent: Insert List menu values to Mysql
| | Newbie | | Join Date: Aug 2007
Posts: 2
| | | re: Insert List menu values to Mysql
Hi! I I am new here, Great community BTW, and thought I'd post my first question. and having been studying this language. I am toying around with Dongletran's script and modified it a bit just to get some practice in, and came to an error that has stumped me. Upon submitting, I get this message "Could not add the entry because: " . mysql_error() . ". The query was $query." This doesn't make sense to me, I understand its trying to reference my query, but I don't see how (if that makes sense) I'm trying to figure out why this happens. Anyone experience anything similar?
|  | Moderator | | Join Date: May 2007 Location: UK - North West
Posts: 385
| | | re: Insert List menu values to Mysql
Hi Superpie and welcome to TSDN,
You are getting that message because the mySQL insert on line 20 appear to have failed. My wild guess is you have not set the mySQL table up correctly. The insert is executed on line 23 and the sucess or failure drives which message is written to the clients browser.
Hope that helps
Purple
| | Newbie | | Join Date: Aug 2007
Posts: 2
| | | re: Insert List menu values to Mysql
Thanks Purple
Based on what you told me, I checked the lines where you said and sure enough noticed some errors. Now everything works flawlessly. Thanks once again!
|  | Moderator | | Join Date: May 2007 Location: UK - North West
Posts: 385
| | | re: Insert List menu values to Mysql
Superpie,
I am please we could help,
We look forward to seeing you around TSDN PHP forum again soon
Regards Purple
| | Newbie | | Join Date: Nov 2008
Posts: 1
| | | re: Insert List menu values to Mysql
I tried adapting Dongletran's script for my database, but am having major trouble implementing it. I read and re-read and compared my original to his original and found everything is where it should be. I get the same exact error message as superpie " . mysql_error() . ". The query was $query." I tried applying his/Purples solution and I still receive that message. I've just about pulled out all my hair. Perhaps I have misread something on my own script. Hopefully its a simple fix-- Ive rebuilt my script 2 times already :( Please tell me if I am doing anything wrong. - <html>
-
<body>
-
<?php
-
if (isset($_POST['submit'])) { //handle the form
-
if ($dbc = mysql_connect ('localhost', 'mylogin', 'mypassword')) {
-
if (!@mysql_select_db ('mydatabase')) {
-
die ('<p>Could not select the database because: <b>' . mysql_error() . '</b></p>');
-
}
-
} else {
-
die ('<p>Could not could not connect to Mysql because: <b>' . mysql_error() . '</b></p>');
-
}
-
//define the query
-
$query = "INSERT INTO registration (type, fname, lname, title, empnum, address, city, state, zip, h1, h2, h3, c1, c2, c3,
-
email, email2, accommodations, pay, checknum, comments, Morning-First-choice, Morning-Second-choice, Morning-Third-choice,
-
Morning-Fourth-choice, Morning-Fifth-choice, Midmorning-First-choice, Midmorning-Second-choice, Midmorning-Third-choice,
-
Midmorning-Fourth-choice, Midmorning-Fifth-choice, Afternoon-First-choice, Afternoon-Second-choice, Afternoon-Third-choice,
-
Afternoon-Fourth-choice, Afternoon-Fifth-choice, dateandtime) VALUES ('{$_POST['type']}','{$_POST['fname']}','{$_POST['lname']}','{$_POST['title']}','{$_POST['empnum']}','{$_POST['address']}','{$_POST['city']}','{$_POST['state']}','{$_POST['zip']}','{$_POST['h1']}','{$_POST['h2']}','{$_POST['h3']}','{$_POST['c1']}','{$_POST['c2']}','{$_POST['c3']}','{$_POST['email']}','{$_POST['email2']}','{$_POST['accommodations']}','{$_POST['pay']}','{$_POST['checknum']}','{$_POST['comments']}','{$_POST['Morning-First-choice']}','{$_POST['Morning-Second-choice']}','{$_POST['Morning-Third-choice']}','{$_POST['Morning-Fourth-choice']}','{$_POST['Morning-Fifth-choice']}','{$_POST['Midmorning-First-choice']}','{$_POST['Midmorning-Second-choice']}','{$_POST['Midmorning-Third-choice']}','{$_POST['Midmorning-Fourth-choice']}','{$_POST['Midmorning-Fifth-choice']}','{$_POST['Afternoon-First-choice']}','{$_POST['Afternoon-Second-choice']}','{$_POST['Afternoon-Third-choice']}','{$_POST['Afternoon-Fourth-choice']}','{$_POST['Afternoon-Fifth-choice']}','{$_POST['dateandtime']}')";
-
//execue the query
-
if (mysql_query ($query)) {
-
print '<p><font size="5"><br>
-
-
Thank you for entering this registration. We appreciate your effort.
-
<p>
-
<b>
-
<b>
-
<font size="3">If you are at another location, feel free to input you data for the month</font><p>
-
';
-
} else {
-
print '<p> <center><font face="arial" color="red" size="3">Could not add the entry because: <b>" . mysql_error() . "<b>. The query was $query.</font></center></p>';
-
}
-
mysql_close();
-
}
-
//display the form
-
?>
-
<form name="myForm" action="post.php" method="post">
-
<TABLE border=4 CELLPADDING=0 CELLSPACING=0 width="100%">
-
<tr><td bgcolor=lightblue><Center>
-
<p><font size="6">Registration</font></Center></p>
-
</td>
-
</table>
-
<table border="4" cellspacing="1" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="227">
-
<tr>
-
<td width="17%" height="1" align="right"><font size="5">Registration Type
-
</font> </td>
-
<td width="62%" align="center" height="1" colspan="2">
-
<p align="left">
-
<input type="radio" value="Presenter" name="type" checked>workshop Staff
-
<input type="radio" value="workshop Staff" name="type">Presenter
-
<input type="radio" value="Non workshop staff" name="type">Non Staff
-
<input type="radio" value="Intern" name="type">Intern
-
<br>
-
</td>
-
</tr>
-
<tr>
-
<td width="17%" height="27" align="right"><font size="5">First Name </td>
-
<td width="17%" align="center" height="27"><input type="text" name="fname" size="24"> </td>
-
<td width="45%" rowspan="4" height="120"> <p> </p>
-
<p> </td>
-
</tr>
-
<tr>
-
<td width="17%" height="27" align="right"><font size="5">Last Name</td>
-
<td width="17%" align="center" height="27"><input type="text" name="lname" size="24"></td>
-
</tr>
-
<tr>
-
<td width="17%" height="27" align="right"><font size="5">Title</td>
-
<td width="17%" align="center" height="27"><input type="text" name="title" size="24"></td>
-
</tr>
-
<tr>
-
<td width="17%" height="27" align="right"><font size="5">Employee Number</td>
-
<td width="17%" align="center" height="27"><input type="text" name="empnum" size="24"></td>
-
</tr>
-
<tr>
-
<td width="34%" colspan="2" height="19" align="right"> </td>
-
</tr>
-
<tr>
-
<td width="17%" height="19" align="right"><font size="5">Address</font></td>
-
<td width="17%" align="center" height="19">
-
<input type="text" name="address" size="25"></td>
-
</tr>
-
<tr>
-
<td width="17%" height="19" align="right"><font size="5">City</font></td>
-
<td width="17%" align="center" height="19">
-
<input type="text" name="city" size="25"></td>
-
</tr>
-
<tr>
-
<td width="17%" height="19" align="right"><font size="5">State</font></td>
-
<td width="17%" align="center" height="19">
-
<Table>
-
<td width="17%" align="center" height="27">
-
<select name="state">
-
<option value="AZ">Arizona
-
<option value="CA" Selected>California
-
<option value="CO">Colorado
-
</select></td>
-
</Table>
-
</td>
-
</tr>
-
<tr>
-
<td width="17%" height="19" align="right"><font size="5">Zip</font></td>
-
<td width="17%" align="center" height="19">
-
<input type="text" name="zip" size="26"></td>
-
</tr>
-
<tr>
-
<td width="17%" height="19" align="right"><font size="5">Phone Number</font></td>
-
<td width="17%" align="center" height="19">
-
<input name="h1" size="4" maxlength="3"> -
-
<input name="h2" size="4" maxlength="3"> -
-
<input name="h3" size="5" maxlength="4">
-
</td>
-
</tr>
-
<tr>
-
<td width="17%" height="19" align="right"><font size="5">Mobile Number</font></td>
-
<td width="17%" align="center" height="19">
-
<input name="c1" size="4" maxlength="3"> -
-
<input name="c2" size="4" maxlength="3"> -
-
<input name="c3" size="5" maxlength="4"></td>
-
</tr>
-
<tr>
-
<td width="17%" height="19" align="right"><font size="5">Email</font></td>
-
<td width="17%" align="center" height="19">
-
<input name="email" class="thin" type="text" name="email" size="26">
-
</td>
-
</tr>
-
<tr>
-
<td width="17%" height="19" align="right"><font size="5">Verify Email</font></td>
-
<td width="17%" align="center" height="19">
-
<input name="email2" class="thin" type="text" name="email2" size="26"> </td>
-
</tr>
-
<tr>
-
<td width="17%" height="19" align="right"><font size="5">Accommodations</font></td>
-
<td width="17%" align="center" height="19">
-
<input type="text" name="accommodations" Value="None" maxlength="254" size="26">
-
</td>
-
</tr>
-
</font>
-
</table>
-
-
<TABLE border=4 CELLPADDING=0 CELLSPACING=0 width="100%">
-
<tr><td bgcolor=lightblue><Center>
-
<font size="6">Payments</font>
-
</td>
-
</font><br>
-
</tr></td>
-
</table>
-
-
<table border="4" cellspacing="1" bordercolor="#111111" width="100%" height="66">
-
<tr>
-
<td width="119" align="center" height="19"> </td>
-
<td width="55" align="center" height="19"><b>Early</b></td>
-
<td width="59" align="center" height="19"><b>Regular</b></td>
-
<td width="59" align="center" height="19"><b>Comped</b></td>
-
<td width="86" align="center" height="19"><b>Check #</b></td>
-
<td width="503" align="center" height="19">Comments (255 chars max)</td>
-
</tr>
-
<tr>
-
<td width="119" align="center" height="1">workshop Staff</td>
-
<td width="55" align="center" height="1"><input type="radio" value="Staff-early-60" name="pay">$60</td>
-
<td width="59" align="center" height="1"><input type="radio" value="Staff-regular-80" name="pay">$80</td>
-
<td width="59" align="center" height="1"><input type="radio" value="Staff-Comped" name="pay">Free</td>
-
<td width="86" align="center" height="28" rowspan="3">
-
<input type="text" name="checknum" size="10"></td>
-
<td width="503" align="center" height="28" rowspan="3">
-
<textarea rows="4" name="comments" cols="61"></textarea><br>
-
</td>
-
</tr>
-
<tr>
-
<td width="119" align="center" height="6">Non-workshop Staff</td>
-
<td width="55" align="center" height="6"><input type="radio" value="Non-Staff-early-100" name="pay">$100</td>
-
<td width="59" align="center" height="6"><input type="radio" value="Non-Staff-regular-120" name="pay">$120</td>
-
<td width="59" align="center" height="6"><input type="radio" value="Non-Staff-Comped" name="pay">Free</td>
-
</tr>
-
<tr>
-
<td width="119" align="center" height="1">Presenters</td>
-
<td width="55" align="center" height="1">X</td>
-
<td width="59" align="center" height="1">X</td>
-
<td width="59" align="center" height="1"><input type="radio" value="Presenter" name="pay">Free</td>
-
</tr>
-
</table>
-
<br> <table border="3" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
-
<tr>
-
<td width="31" align="center">1st</td>
-
<td width="29" align="center">2nd</td>
-
<td width="31" align="center">3rd</td>
-
<td width="32" align="center">4rth</td>
-
<td width="29" align="center">5th</td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="1A" name="Morning-First-choice" checked></td>
-
<td width="29" align="center"><input type="radio" value="1A" name="Morning-Second-choice" checked></td>
-
<td width="31" align="center"><input type="radio" value="1A" name="Morning-Third-choice" checked></td>
-
<td width="32" align="center"><input type="radio" value="1A" name="Morning-Fourth-choice" checked></td>
-
<td width="29" align="center"><input type="radio" value="1A" name="Morning-Fifth-choice" checked></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="2A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="2A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="2A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="2A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="2A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="3A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="3A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="3A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="3A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="3A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center">
-
<input type="radio" value="4A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="4A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="4A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="4A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="4A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center">
-
<input type="radio" value="5A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="5A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="5A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="5A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="5A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center">
-
<input type="radio" value="6A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="6A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="6A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="6A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="6A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="7A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="7A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="7A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="7A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="7A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="8A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="8A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="8A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="8A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="8A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center">
-
<input type="radio" value="9A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="9A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="9A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="9A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="9A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center">
-
<input type="radio" value="10A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="10A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="10A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="10A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="10A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center">
-
<input type="radio" value="11A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="11A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="11A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="11A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="11A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center">
-
<input type="radio" value="12A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="12A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="12A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="12A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="12A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center">
-
<input type="radio" value="13A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="13A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="13A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="13A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="13A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center">
-
<input type="radio" value="14A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="14A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="14A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="14A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="14A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center">
-
<input type="radio" value="15A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="15A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="15A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="15A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="15A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center">
-
<input type="radio" value="16A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="16A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="16A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="16A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="16A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center">
-
<input type="radio" value="17A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="17A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="17A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="17A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="17A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center">
-
<input type="radio" value="18A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="18A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="18A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="18A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="18A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center">
-
<input type="radio" value="19A" name="Morning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="19A" name="Morning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="19A" name="Morning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="19A" name="Morning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="19A" name="Morning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
</table>
-
<p>
-
<br>
-
<table border="3" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
-
<tr>
-
<td width="31" align="center">1st</td>
-
<td width="29" align="center">2nd</td>
-
<td width="31" align="center">3rd</td>
-
<td width="32" align="center">4rth</td>
-
<td width="29" align="center">5th</td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="20B" name="Midmorning-First-choice" checked></td>
-
<td width="29" align="center"><input type="radio" value="20B" name="Midmorning-Second-choice" checked></td>
-
<td width="31" align="center"><input type="radio" value="20B" name="Midmorning-Third-choice" checked></td>
-
<td width="32" align="center"><input type="radio" value="20B" name="Midmorning-Fourth-choice" checked></td>
-
<td width="29" align="center"><input type="radio" value="20B" name="Midmorning-Fifth-choice" checked></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="21B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="21B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="21B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="21B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="21B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="22B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="22B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="22B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="22B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="22B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="23B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="23B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="23B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="23B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="23B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="24B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="24B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="24B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="24B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="24B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="25B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="25B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="25B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="25B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="25B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="26B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="26B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="26B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="26B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="26B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="27B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="27B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="27B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="27B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="27B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="28B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="28B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="28B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="28B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="28B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="29B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="29B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="29B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="29B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="29B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="30B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="30B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="30B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="30B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="30B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="31B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="31B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="31B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="31B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="31B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="32B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="32B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="32B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="32B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="32B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="33B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="33B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="33B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="33B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="33B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="34B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="34B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="34B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="34B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="34B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="35B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="35B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="35B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="35B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="35B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="36B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="36B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="36B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="36B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="36B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="37B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="37B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="37B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="37B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="37B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="38B" name="Midmorning-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="38B" name="Midmorning-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="38B" name="Midmorning-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="38B" name="Midmorning-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="38B" name="Midmorning-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
</table>
-
<BR>
-
<BR>
-
<table border="3" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
-
<tr>
-
<td width="31" align="center">1st</td>
-
<td width="29" align="center">2nd</td>
-
<td width="31" align="center">3rd</td>
-
<td width="32" align="center">4rth</td>
-
<td width="29" align="center">5th</td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="39C" name="Afternoon-First-choice" checked></td>
-
<td width="29" align="center"><input type="radio" value="39C" name="Afternoon-Second-choice" checked></td>
-
<td width="31" align="center"><input type="radio" value="39C" name="Afternoon-Third-choice" checked></td>
-
<td width="32" align="center"><input type="radio" value="39C" name="Afternoon-Fourth-choice" checked></td>
-
<td width="29" align="center"><input type="radio" value="39C" name="Afternoon-Fifth-choice" checked></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="40C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="40C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="40C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="40C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="40C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="41C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="41C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="41C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="41C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="41C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="42C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="42C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="42C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="42C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="42C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="43C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="43C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="43C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="43C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="43C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="44C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="44C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="44C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="44C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="44C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="45C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="45C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="45C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="45C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="45C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="46C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="46C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="46C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="46C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="46C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="47C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="47C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="47C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="47C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="47C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="48C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="48C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="48C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="48C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="48C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="49C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="49C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="49C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="49C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="49C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="50C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="50C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="50C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="50C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="50C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="51C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="51C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="51C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="51C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="51C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="52C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="52C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="52C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="52C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="52C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="53C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="53C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="53C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="53C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="53C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="54C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="54C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="54C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="54C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="54C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="55C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="55C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="55C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="55C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="55C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="56C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="56C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="56C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="56C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="56C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
<tr>
-
<td width="31" align="center"><input type="radio" value="57C" name="Afternoon-First-choice"></td>
-
<td width="29" align="center"><input type="radio" value="57C" name="Afternoon-Second-choice"></td>
-
<td width="31" align="center"><input type="radio" value="57C" name="Afternoon-Third-choice"></td>
-
<td width="32" align="center"><input type="radio" value="57C" name="Afternoon-Fourth-choice"></td>
-
<td width="29" align="center"><input type="radio" value="57C" name="Afternoon-Fifth-choice"></td>
-
<td width="780"> </td>
-
</tr>
-
</table>
-
<BR>
-
<BR>
-
<input type="hidden" name="dateandtime">
-
<tr>
-
<td colspan=2><input type="submit" name="submit" value="Submit">
-
<input type='reset' name='reset' value='Clear all fields'></td>
-
</tr>
-
</form>
-
</body>
-
</html>
I would greatly appreciate any input on this matter.
|  | | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,471 network members.
|