PHP interesse |
|
Beste Mensen,
Ik heb een select drop down box wanneer deze veranderd moet de waarde hiervan meegegeven worden in de header. Ik krijg nu telkens het volgende in de header te staan: http://localhost/test/undefined
Ik test nu in FF, in IE7 doet de functie het al helemaal niet.
Mijn code=
<form method="get" name="blaat" action="<?php $_SERVER['REQUEST_URI'] ?>">
<h3>Bepaal uw richting en opleiding:</h3>
<table style="border: solid 1px; width: 550px; cellpadding: 0; cellspacing: 0px;">
<tr>
<td><h5>Kies uw <b>richting</b>.</h5></td>
</tr>
<tr>
<form method="get" name="blaat" action="<?php $_SERVER['REQUEST_URI'] ?>"> <h3>Bepaal uw richting en opleiding: </h3> <table style="border: solid 1px; width: 550px; cellpadding: 0; cellspacing: 0px;">
<script>
function click() {
var rid = document.blaat.richting.value ;
document.location.href = 'test.php?r_id='.rid
}
</script>
<script> function click() { var rid = document.blaat.richting.value ; document.location.href = 'test.php?r_id='.rid } </script>
<td>
<select name="richting" onchange="click()">
<option>(Richting)</option>
<option value="1">blaaat</option>
<option value="2">sdfjsdlk</option>
</select>
</td>
</tr>
</table>
</form>
<select name="richting" onchange="click()">
|