Advertisement
Advertisement
| 07.27.2008 at 02:05PM PDT, ID: 23599287 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: |
Here is the code for my form from register_full.php file that calls the checkForm function
<form method="POST" name="msgform" action="<?php echo $editFormAction; ?>" onsubmit="return checkForm()">
<br>
</p>
<p align="center" class="pageTitle"><h2><font color="#333366">Create Your Account</font></h2></p>
<p> * Fields are required </p>
<table border="0" align="center" cellpadding="1" cellspacing="1" class="">
<tr valign="baseline">
<td align="right" nowrap class="colText">* Full Name:</td>
<td class="rowText"><input type="text" name="name" size="32" /></td>
</tr>
<tr valign="baseline">
<td align="right" nowrap class="colText">* Email:</td>
<td class="rowText"><input type="text" name="email" size="32" /></td>
</tr>
<tr valign="baseline">
<td align="right" nowrap class="colText">* Password:</td>
<td class="rowText"><input type="password" name="password" size="32" /></td> </tr>
<tr valign="baseline">
<td align="right" nowrap class="colText">* Re-enter Password:</td>
<td class="rowText"><input type="password" name="password2" size="32" /></td>
</tr>
<tr valign="baseline">
<td align="right" valign="middle" nowrap class="colText">* Type of Account:</td>
<td class="rowText"><input type="radio" name="acctype" value="realtor" />Realtor/Property Manager/Owner<br />
<input type="radio" name="acctype" value="renter" />Buyer/Renter</td>
</tr>
<td height="1" colspan="2 class="rowText""><hr size="1"></td>
<tr valign="baseline">
<td align="right" nowrap class="colText">Company Name: (optional)</td>
<td class="rowText"><input type="text" name="companyname" value="<?php echo $row_memberinfo['companyname']; ?>" size="32" /></td>
</tr>
<tr valign="baseline">
<td align="right" nowrap class="colText">Address: (optional)</td>
<td class="rowText"><input type="text" name="address" value="<?php echo $row_memberinfo['address']; ?>" size="32" /></td>
</tr>
<tr valign="baseline">
<td align="right" nowrap class="colText">City: (optional)</td>
<td class="rowText"><input type="text" name="city" value="<?php echo $row_memberinfo['city']; ?>" size="32" /></td>
</tr>
<tr valign="baseline">
<td align="right" nowrap class="colText">State: (optional)</td>
<td class="rowText"><input type="text" name="state" value="<?php echo $row_memberinfo['state']; ?>" size="32" /></td>
</tr>
<tr valign="baseline">
<td align="right" nowrap class="colText">Zip: (optional)</td>
<td class="rowText"><input type="text" name="zip" value="<?php echo $row_memberinfo['zip']; ?>" size="32" /></td>
</tr>
<tr valign="baseline">
<td align="right" nowrap class="colText">Phone: (optional)</td>
<td class="rowText"><input type="text" name="phone" value="<?php echo $row_memberinfo['phone']; ?>" size="32" /></td>
</tr>
<tr valign="baseline">
<td align="right" nowrap class="colText">Fax: (optional)</td>
<td class="rowText"><input type="text" name="fax" value="<?php echo $row_memberinfo['fax']; ?>" size="32" /></td>
</tr>
<tr valign="baseline">
<td align="right" nowrap class="colText">Company web site: (optional)</td>
<td class="rowText"><input type="text" name="companywebsite" value="http://www.<?php echo $row_memberinfo['companywebsite']; ?>" size="32" /></td>
</tr>
<tr>
<td colspan="2" class="colText"><div align="center"></div></td>
</tr>
<tr>
<td colspan="2" class="rowText"><div align="right">
<input name="active" type="hidden" id="active" value="Yes">
<input name="Submit22" type="submit" value="Create Account" >
</div></td>
</tr>
<tr>
<td colspan="2"></td>
</tr>
<tr>
<td colspan="2"></td>
</tr>
</table>
</table>
<p> </p>
<input type="hidden" name="MM_insert" value="msgform">
<input type="hidden" name="groupid" value="<? echo $_SESSION['memberID']; ?>">
</form>
|