Hallo Leute,
ich habe ein Problem und benötige Eure Hilfe.
Ich habe ein Formular auf einem Script das eine Checkbox zur HTTPS Seite ausgibt:
In der Javascript Funktion möchte ich gerne bei aktivieren der Checkbox SSL dass eine https anstatt einer http Seite geladen wird:
Die Seite wird neu geladen und die Checkbox wieder zurücksetzt. Wie kann ich erreichen, dass die Checkbox auf check/unchecked gesetzt wird.
Vielen Dank und Gruß
Matze
ich habe ein Problem und benötige Eure Hilfe.
Ich habe ein Formular auf einem Script das eine Checkbox zur HTTPS Seite ausgibt:
PHP:
<form id="anmelden" action="tutorials38.php" method="POST" name="loginform">
<ul style="list-style: none;">
<li><input name="user" type="text" value="Benutzer" size="15">
<img src="http://www.tutorials.de/forum/images/1_pix_t.gif" height="1px" width="2px" alt="spacer">
<input name="passwd" type="password" value="***" size="15">
<input type="checkbox" name="ssl" value="" onclick="check(this);" >SSL
<img src="http://www.tutorials.de/forum/images/1_pix_t.gif" height="1px" width="10px" alt="spacer">
<input type="submit" name="sending" value="Login" >
</li>
</ul>
</form>
In der Javascript Funktion möchte ich gerne bei aktivieren der Checkbox SSL dass eine https anstatt einer http Seite geladen wird:
PHP:
function check(elementID) {
var formID = document.forms["loginform"];
if(formID.elements[2].checked == true){
alert ("Option SSL ist aktiviert!");
location.href = "https://localhost/tutorials38.php";
// Button auf aktiviert setzen
formID.elements[2].value = checked;
}
else {
alert ("Option SSL ist deaktiviert!");
}
}
Die Seite wird neu geladen und die Checkbox wieder zurücksetzt. Wie kann ich erreichen, dass die Checkbox auf check/unchecked gesetzt wird.
Vielen Dank und Gruß
Matze