PHP gevorderde |
|
ik heb deze functie uit een tutorial gehaald
<script type="text/javascript">
function toevoegendocument()
{ keuze =""
for (teller=0; teller<document.form1.test.length; teller++)
{ if(document.form1.toevoegendocument.options[teller].selected)
keuze+="" + document.form1.toevoegendocument.options[teller].value
}
</script>
<script type="text/javascript"> function toevoegendocument() { keuze ="" for (teller=0; teller<document.form1.test.length; teller++) { if(document.form1.toevoegendocument.options[teller].selected) keuze+="" + document.form1.toevoegendocument.options[teller].value } </script>
en ik wil de keuze weergeven in de volgende regel
<?php
echo(' <a href="?page=documenttoevoegenaanvraag&id='.$id.'&document=keuze" onclick="toevoegendocument()">Voeg Toe</a></td></tr>');
?>
<?php echo(' <a href="?page=documenttoevoegenaanvraag&id='.$id.'&document=keuze" onclick="toevoegendocument()">Voeg Toe</a></td></tr>'); ?>
maar ik krijg dit maar niet voor elkaar, hoe doe ik dit?
|