Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
JavaScript 6
I just don't get this.
function checkPass(){
Location = document.form.password.value
Location = "js6-" + "window.open" + ".php"
if (document.form.password.value == Location ) {
alert("Good Job!")
window.open(Location)
}
else{
alert("Try Again!")
}
}
</script>
<form name="form">
<p align="center">Password: <input type="text" name="password" value="">
<input type="button" value="Submit" onclick="return checkPass()">
</p>
</form>```
Someone please help :(
I don't really understand how to come up with a password :@
SimplySolitary's right, it's RIGHT THERE.
Okay, let me show you something that may help.
$a = 1;
$b = 2;
$c = 3;
$answer = $a + $b + $c;
echo $answer;
I used $ infront of the variables because I'm used to coding in PHP.
Anyway, what would $answer be? 6, correct?
Hopefully that should help you out a bit. :)