include_m.php
Code (php)
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
<?php
function include_m() {
$bestanden = func_get_args();
foreach ($bestanden as $bestand) {
include $bestand;
}
}
include_m('config.php', 'auth.php', 'header.inc.php');
?>
function include_m() {
$bestanden = func_get_args();
foreach ($bestanden as $bestand) {
include $bestand;
}
}
include_m('config.php', 'auth.php', 'header.inc.php');
?>