I need to keep the values set in the below select menu. i.e. when someone selects Awareness the page refreshes and value and name is still set at Awarness. This is also crucial for my pagination implementation because on a page click of anything past my limit defaults to an empty value. Thanks..
return "<form name=\"form2\" method=\"post\" action=\"home.php?page=manage&action=entries\"><select name=\"sort\" style=\"font-size: 11px; font-weight: bold; color: 000000;\" onchange=\"document.forms['form2'].submit()\">
<option selected>Sort by Category</option>
<option value=\"1\">Sort by Date</option>
<option value=\"2\">Sort by Awareness(Low)</option>
<option value=\"3\">Sort by Awareness(Medium)</option>
<option value=\"4\">Sort by Awareness(High)</option>
<option value=\"5\">Sort by Past Journals</option>
<option value=\"6\">Sort by Recent Journals</option>
</select></form>";
}