16 lines
180 B
PHP
16 lines
180 B
PHP
|
<html>
|
||
|
<head>
|
||
|
</head>
|
||
|
<body>
|
||
|
<?php include '../config.php';?>
|
||
|
|
||
|
|
||
|
<?php
|
||
|
if ($cpkidsvisible > "0") {
|
||
|
require "cpdual.php";
|
||
|
} else {
|
||
|
require "cpsingle.php";
|
||
|
}
|
||
|
?>
|
||
|
</body>
|
||
|
</html>
|