PHP beginner |
|
Hej allemaal, tot nu toe bedankt voor alles wat jullie hebben gedaan. Ik wil graag dat als je in het lijstje een pakket van 1 maand hebt, dat je dan bijv. 150 euro moet betalen en kies je 3 maanden, dat er dan bijv 400 euro komt te staan. Ik weet echt niet hoe ik dit moet doen. Dit heb ik tot nu toe:
<html>
<head>
<title>Test</title>
<script type="text/javascript">
function rekenuit {
if (time==1m)
{ (uitkomst=="150")}
}
</script>
</head>
<body>
<select size="1" name="time">
<option name="timeperiod" value="Time Period" onclick="document.getElementById('uitkomst').innerHTML = '';" selected="selected" value="">Time Period</option>
<option name="1m" value="1 month" onclick="document.getElementById('uitkomst').innerHTML = '100';">1 month</option>
<option name="3m" value="3 month" onclick="document.getElementById('uitkomst').innerHTML = '200';">3 month</option>
<option name="6m" value="6 month" onclick="document.getElementById('uitkomst').innerHTML = '300';">6 month</option>
<option name="1y" value="1 year" onclick="document.getElementById('uitkomst').innerHTML = '400';">1 year</option>
</select>
<br /><br /><br />
<span>€</span><span id="uitkomst">
</body>
</html>
<html> <head> <title>Test</title> <script type="text/javascript"> function rekenuit { { (uitkomst=="150")} } </script> </head> <body> <select size="1" name="time"> <option name="timeperiod" value="Time Period" onclick="document.getElementById('uitkomst').innerHTML = '';" selected="selected" value="">Time Period</option> <option name="1m" value="1 month" onclick="document.getElementById('uitkomst').innerHTML = '100';">1 month</option> <option name="3m" value="3 month" onclick="document.getElementById('uitkomst').innerHTML = '200';">3 month</option> <option name="6m" value="6 month" onclick="document.getElementById('uitkomst').innerHTML = '300';">6 month</option> <option name="1y" value="1 year" onclick="document.getElementById('uitkomst').innerHTML = '400';">1 year</option> </select> <br /><br /><br /> <span>€</span><span id="uitkomst"> </body> </html>
|