broken-link-melding
---------- brokenlink.php ----------
<form action="brokenlink1.php" method="post" accept-charset="iso-8859-1" target="_self">
<p>
Broken link:</font><br>
Http://<input name="brokenlink" type="text" size="40" tabindex="010"> <input type="submit" name="submit" value="Verstuur" tabindex="020"></form>
</p>
---------- brokenlink1.php ----------
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
<?php
// sluis bezoeker door naar links.php
echo "<SCRIPT LANGUAGE=\"javascript\" TYPE=\"text/javascript\">window.location='links.php#Brokenlink'</SCRIPT>\n";
mail ("[email protected]", "Broken link gemeld via de website", "
Hallo,\n\n
Broken link gemeld via de website:\n
http://$_POST[brokenlink]
", "From: Broken link<[email protected]>");
?>
// sluis bezoeker door naar links.php
echo "<SCRIPT LANGUAGE=\"javascript\" TYPE=\"text/javascript\">window.location='links.php#Brokenlink'</SCRIPT>\n";
mail ("[email protected]", "Broken link gemeld via de website", "
Hallo,\n\n
Broken link gemeld via de website:\n
http://$_POST[brokenlink]
", "From: Broken link<[email protected]>");
?>