hi,
also ich habe eine formular,in dem 3 drop down felder sind, und diese auswahlen sollen per klick versand werden.
also, beim klick auf senden öffnet er mir den mail client,allerdings ist der leer...wird wahrscheinlich auch logisch sein,aber ich weis nicht wie ich das richtig anstelle damit er mir die ausgewähltn zahln versendet.
hier mal der code:
ZitatAlles anzeigen
<script LANGUAGE="JavaScript">
<!-- Begin
today = new Date();
thismonth = today.getMonth()+1;
thisyear = today.getYear();
thisday = today.getDate();
montharray=new Array(31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
maxdays=montharray[thismonth-1];// schaltjahr ausrechnen
if (thismonth==2) {
if ((thisyear/4)!=parseInt(thisyear/4)) maxdays=28;
else maxdays=29;
}// ----> TAGE
document.write("<form methode=post action=mailto:cs_jim@hotmail.com>");
document.write("<select name=dates size=1>");
for (var theday = 1; theday <= maxdays; theday++) {document.write("<option");
if (theday == thisday) document.write(" selected");
document.write(">");
document.write(theday);
}
document.write("</select>");
// ----> MONATE
document.write(" <select name=dates2 size=1>");
for (var themonth = 1; themonth <= 12; themonth++) {document.write("<option");
if (themonth == thismonth) document.write(" selected");
document.write(">");
document.write(themonth);
}
document.write("</select>");
// ----> JAHRE
document.write(" <select name=dates3 size=1>");
for (var theyear = 2006; theyear <= 2008; theyear++) {document.write("<option");
if (theyear == thisyear) document.write(" selected");
document.write(">");
document.write(theyear);
}
document.write("</select>");document.write("<input type=submit name=Submit value=Senden> </form>");
</script>
bitte seid so nett und schreibt nur antworten die mir auch weiter helfen...
sachen wie "benutze google" und so zeugs brauch ich nicht, denn wenn mir das was gebracht hätte wäre ich nicht hier
danke
ps: entschuldigt die rechtschreibung