Advertisement
Advertisement
| 03.27.2008 at 07:09PM PDT, ID: 23276268 |
|
[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: |
<table border="0px" cellpadding="3px" cellspacing="3px" width="400px">
<tr>
<td>Select a<br />City</td>
<td>Your Prefered<br />Swimming Temp</td>
<td>Select a <br />Heater Model</td>
</tr>
<tr>
<td>
<select name="city" id="city">
<option value="mel" <?=$cities[0]?> >Melbourne</option>
<option value="syd" <?=$cities[1]?> >Sydney</option>
<option value="bri" <?=$cities[2]?> >Brisbane</option>
<option value="per" <?=$cities[3]?> >Perth</option>
</select>
</td>
<td>
<select name="temp_set" id="temp_set">
<option value="24" <?=$temp_sets[0]?> >24 Degrees C</option>
<option value="26" <?=$temp_sets[1]?> >26 Degrees C</option>
<option value="28" <?=$temp_sets[2]?> >28 Degrees C</option>
</select>
</td>
<td>
<select name="rating" id="rating">
<option value="7.8" <?=$ratings[0]?> >OnePac 2 - 7.8kW</option>
<option value="11" <?=$ratings[1]?> >OnePac 3 - 11kW</option>
<option value="15" <?=$ratings[2]?> >EdenPac 4 - 15kW</option>
<option value="24" <?=$ratings[3]?> >EdenPac 7 - 24kW</option>
</select>
</td>
</tr>
</table>
<br />
<input type="submit" name="button" id="button" value="submit" />
|
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |
| 03.27.2008 at 07:23PM PDT, ID: 21227572 |
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: |
<form method="post" action="yourPHPscript.php" name="myForm">
<table border="0px" cellpadding="3px" cellspacing="3px" width="400px">
<tr>
<td>Select a<br />City</td>
<td>Your Prefered<br />Swimming Temp</td>
<td>Select a <br />Heater Model</td>
</tr>
<tr>
<td>
<select name="city" id="city" onchange="document.myForm.submit();">
<option value="mel" <?=$cities[0]?> >Melbourne</option>
<option value="syd" <?=$cities[1]?> >Sydney</option>
<option value="bri" <?=$cities[2]?> >Brisbane</option>
<option value="per" <?=$cities[3]?> >Perth</option>
</select>
</td>
<td>
<select name="temp_set" id="temp_set" onchange="document.myForm.submit();">
<option value="24" <?=$temp_sets[0]?> >24 Degrees C</option>
<option value="26" <?=$temp_sets[1]?> >26 Degrees C</option>
<option value="28" <?=$temp_sets[2]?> >28 Degrees C</option>
</select>
</td>
<td>
<select name="rating" id="rating" onchange="document.myForm.submit();">
<option value="7.8" <?=$ratings[0]?> >OnePac 2 - 7.8kW</option>
<option value="11" <?=$ratings[1]?> >OnePac 3 - 11kW</option>
<option value="15" <?=$ratings[2]?> >EdenPac 4 - 15kW</option>
<option value="24" <?=$ratings[3]?> >EdenPac 7 - 24kW</option>
</select>
</td>
</tr>
</table>
<br />
<input type="submit" name="button" id="button" value="submit" />
</form>
|
| 03.27.2008 at 07:28PM PDT, ID: 21227588 |
| 03.27.2008 at 07:31PM PDT, ID: 21227598 |