include-bestand-checken
Gesponsorde koppelingen
PHP script bestanden
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
2
3
4
5
6
7
8
9
10
11
12
13
<?
// function.php
function includeb($file) {
if (file_exists($file)) {
include($file); }
elseif (file_exists($file)) {
include("./".$file); }
else {
mail("[email protected]","Include pagina bestaat niet.","De pagina ".$file.", die op uw website wordt geinclude, bestaat niet.");
echo "Fout, er wordt een pagina geinclude, maar die bestaat niet. <br />Er is een email naar de webmaster gestuurt."; // Hier kun je je error melding zetten
}
}
?>
// function.php
function includeb($file) {
if (file_exists($file)) {
include($file); }
elseif (file_exists($file)) {
include("./".$file); }
else {
mail("[email protected]","Include pagina bestaat niet.","De pagina ".$file.", die op uw website wordt geinclude, bestaat niet.");
echo "Fout, er wordt een pagina geinclude, maar die bestaat niet. <br />Er is een email naar de webmaster gestuurt."; // Hier kun je je error melding zetten
}
}
?>