I'm trying to build a snippet which will later be inserted into a bigger piece of code.
Everythings working fine so far, but there's one problem: I have not figured out how to implement the ONCHANGE-part. The value is detected successfully, but I just don't get a fine index.php?day=23424234 combination. I suppose it's something about escape characters?
Would anyone help me?
$dayChoser = ' <form name="day">
<select ONCHANGE="location = index.php?day=this.options[this.selectedIndex].value;">
';
foreach ($tageArray as $ts) {
$tempDay = date('m/d/Y', $ts);
$dayChoser.='<option value=' . $ts . '>' . $tempDay . '</option>';
}
$dayChoser.='</select> </form>';