Code: Alles auswählen
<?php
$page = "test/front_content.php?idcat=76";
if (file_exists($page)) {
include($page);
}
?>
Danke
Max
Code: Alles auswählen
<?php
$page = "test/front_content.php?idcat=76";
if (file_exists($page)) {
include($page);
}
?>
Code: Alles auswählen
$page = "test/front_content.php";
if (file_exists($page)) {
include($page);
}
Code: Alles auswählen
<?php
$idcat=76;
$page = "test/front_content.php";
if (file_exists($page)) {
include($page);
}
?>