login  Naam:   Wachtwoord: 
Registreer je!
 Forum

KIJK FF - formulier

Offline Erwt - 14/02/2007 16:33 (laatste wijziging 14/02/2007 18:35)
Avatar van ErwtPHP 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:

  1. <html>
  2.  
  3. <head>
  4. <title>Test</title>
  5. <script type="text/javascript">
  6. function rekenuit {
  7. if (time==1m)
  8. { (uitkomst=="150")}
  9. }
  10. </script>
  11. </head>
  12.  
  13. <body>
  14. <select size="1" name="time">
  15. <option name="timeperiod" value="Time Period" onclick="document.getElementById('uitkomst').innerHTML = '';" selected="selected" value="">Time Period</option>
  16. <option name="1m" value="1 month" onclick="document.getElementById('uitkomst').innerHTML = '100';">1 month</option>
  17. <option name="3m" value="3 month" onclick="document.getElementById('uitkomst').innerHTML = '200';">3 month</option>
  18. <option name="6m" value="6 month" onclick="document.getElementById('uitkomst').innerHTML = '300';">6 month</option>
  19. <option name="1y" value="1 year" onclick="document.getElementById('uitkomst').innerHTML = '400';">1 year</option>
  20. </select>
  21. <br /><br /><br />
  22. <span></span><span id="uitkomst">
  23. </body>
  24. </html>

4 antwoorden

Gesponsorde links
Offline Dark_Paul - 14/02/2007 16:39
Avatar van Dark_Paul PHP ver gevorderde
  1. <option blablab onclick="javascript: document.getElementById('uitkomst').innerHTML = '300';">3 months</option>

Dit bij elke option zetten, met het als getal de prijs.
Offline Erwt - 14/02/2007 16:48 (laatste wijziging 14/02/2007 17:45)
Avatar van Erwt PHP beginner Ok ik heb mijn post aangepast.. en als ik nu uitkomst + de nieuwe waarde wil doen? dus dat wil optellen? 

  1. <html>
  2.  
  3. <head>
  4. <title></title>
  5.  
  6. <style type="text/css">
  7. .divtimeperiod {
  8. position: reletive;
  9. float: left;
  10. width: 230px;
  11. height: 230px;
  12. padding: 20px;
  13. background-color: #CCCCCC;
  14. border: 1px solid black;
  15. }
  16. select {
  17. background-color: #CCCCCC;
  18. border: 1px solid black;
  19. }
  20. </style>
  21.  
  22. </head>
  23.  
  24. <body>
  25. <script type="text/javascript">
  26. 1month = 100
  27. 3month = 200
  28. 6month = 300
  29. 1year = 400
  30. deuitkomst = document.getElementById('uitkomst').innerHTML
  31. </script>
  32. <div class="divtimeperiod">
  33. <p align="center">Time Period</p>
  34. <select size="1" name="time">
  35. <option name="timeperiod" value="Time Period" selected="selected" value="">Time Period</option>
  36. <option name="1m" value="1 month" onclick="document.getElementById('uitkomst').innerHTML = deuitkomst + 1month;">1 month</option>
  37. <option name="3m" value="3 month" onclick="document.getElementById('uitkomst').innerHTML = deuitkomst + '3month';">3 month</option>
  38. <option name="6m" value="6 month" onclick="document.getElementById('uitkomst').innerHTML = deuitkomst + '6month';">6 month</option>
  39. <option name="1y" value="1 year" onclick="document.getElementById('uitkomst').innerHTML = deuitkomst + '1year';">1 year</option>
  40. </select>
  41. <br /><br /><br />
  42. <span>Price:</span>
  43. <span id="uitkomst">0</span>
  44. </div>
  45. </body>
  46. </html>
Offline Ibrahim - 14/02/2007 18:27
Avatar van Ibrahim PHP expert dit heeft niet met je probleem te maken, maar er is een entity voor de euro teken hoor ==> &euro;
Offline Erwt - 14/02/2007 18:29
Avatar van Erwt PHP beginner Hehe oke maar toch nog bedankt ik pas het aan ;)
Gesponsorde links
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2024 Sitemasters.be - Regels - Laadtijd: 0.217s