Advertisement
Advertisement
| 09.06.2008 at 08:16PM PDT, ID: 23709607 |
|
[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: |
<head>
<script type="text/javascript">
<!--
<?php
$query5 = "SELECT * FROM se_test";
$rs= mysql_query($query5, $link_id);
$rows=mysql_num_rows($rs);
echo "var liste2=new Array($rows);n"
. " for(var i=0;i<liste2.length;i++);n"
. " liste2[i]=new Array(2);n";
$n=0;
while($zeile = mysql_fetch_array($rs)) {
echo "\tliste2[$n][0]='".$zeile['useruid']."';\n"
. "\tliste2[$n][1]='".$zeile['stellenstadt']."';\n";
$n++;
}
?>
function update.suchbegriff2()
{
var x = document.searchform.suchbegriff2.length;
for(var n=0; n<x; n++) document.searchform.suchbegriff2.options[0]=null;
for(n=0; n<liste2.length; n++)
{
if(liste2[n][2]==document.searchform.suchbegriff.value)
{
var NeuerEintrag=new Option(liste2[n][1], liste2[n][0]);
document.searchform.suchbegriff2.options[document.searchform.suchbegriff2.length] = NeuerEintrag;
}
}
};
</script>
</head>
<body>
<form name="searchform" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<!-- -->
<div align="center">
<p><br />
<select name="suchbegriff" onChange="update.suchbegriff2()" class="input" size="1">
<?php
$rs=mysql_query("select * from se_test Group BY stellenland ASC");
while($zeile=mysql_fetch_assoc($rs)) {
echo "<option value=\"".$zeile['useruid']
. "\">".$zeile['stellenland']."</option>\n";
}
?>
</select>
<br />
<br />
<select name="suchbegriff2" size="1">
<option>Start</option>
</select>
<input type="hidden" name="language" value="<?php print $language; ?>">
<br />
<input type="submit" value="<? echo $daten[strsuch]; ?>" name="submit" style="border: 1px solid #C0C0C0" />
</p>
</div>
</form>
<script type="text/javascript">
<!--
update_suchbegriff2("");
-->
</script>
</body>
|