Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<a href="http://www.google.de/images?hl=de&source=imghp&q=was+willst+du&gbv=2&aq=f&aqi=g6&aql=&oq=&gs_rfai=" target="_blank">Camp Juli 2010</a>
<form name="passwortabfrage" action="checkpwd.php" method="post">
<label>Passwort</label><br />
<input type="password" name="passwort" /> <br />
<input type="submit" value="Externen Link besuchen" />
</form>
if(!get_magic_quotes_gpc)
$inputpassword = addslashes(trim($_POST['passwort']));
else
$inputpassword = trim($_POST['passwort']);
$realpassword = "MEINPASSWORT";
if(strcmp($inputpassword,$realpassword) == 0)
{
header("Location: deinlinkziel");
}
Das sollte aber nur eine Teillösung sein, deine Frage war nach dem Schutz eines EXTERNEN Links, diese Abfrage gillt für alle Links. Wie unterscheidest du nun ob Extern oder Intern ?