Nieuw lid |
|
Hallo,
ik heb het volgende javascript :
function totaal(){
var totaal = 0;
if(document.forms['bestellen'].CheckboxKleur.checked == true){
totaal += 25;
}
if(document.forms['bestellen'].CheckboxVlagMullem.checked == true){
totaal += 36;
}
if(document.forms['bestellen'].CheckboxVlagEine.checked == true){
totaal += 36;
}
if(document.forms['bestellen'].CheckboxZwartWit.checked == true){
totaal += 20;
}
if(document.forms['bestellen'].CheckboxZichtkaarten.checked == true){
totaal += 25;
}
document.getElementById('totaal').innerHTML = "€ " + totaal + ",-";
}
function totaal(){ var totaal = 0; if(document.forms['bestellen'].CheckboxKleur.checked == true){ totaal += 25; } if(document.forms['bestellen'].CheckboxVlagMullem.checked == true){ totaal += 36; } if(document.forms['bestellen'].CheckboxVlagEine.checked == true){ totaal += 36; } if(document.forms['bestellen'].CheckboxZwartWit.checked == true){ totaal += 20; } if(document.forms['bestellen'].CheckboxZichtkaarten.checked == true){ totaal += 25; } document.getElementById('totaal').innerHTML = "€ " + totaal + ",-"; }
HOe kan ik de waarde die in totaal zit dan doorsturen via mail
mail ("test@test.be","waarde totaal", $bericht, "FROM: Schokkie\nContent-type: text/html\n");
mail ("test@test.be","waarde totaal", $bericht, "FROM: Schokkie\nContent-type: text/html\n");
|