lepos
thinking about you. yes you
Hello there devbest.
I've encountered this issue, that is starting to annoy me ...
Here is what happens;
If I have my index.php in the wwwroot folder set to this -
The page looks like this -
BUT
If my index.php in the wwwroot folder is set to this -
The page has black boxes in some place but the tabs are alright? -
If anyone has a solution please tell me below!
I've encountered this issue, that is starting to annoy me ...
Here is what happens;
If I have my index.php in the wwwroot folder set to this -
PHP:
<?php
define('IN_INDEX', 1);
require_once 'global.php';
$core->handleCall($engine->secure($_GET['url']));
$template->html->get($engine->secure($_GET['url']));
$template->outputTPL();
?>
You must be registered for see links
(The tabs).BUT
If my index.php in the wwwroot folder is set to this -
PHP:
<?php
define('IN_INDEX', 1);
require_once 'global.php';
$core->handleCall($engine->secure($_GET['url']));
$template->write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">');
$template->write('<html xmlns="http://www.w3.org/1999/xhtml">');
$template->write('<head>');
$template->write('<title>');
$template->write('{hotelName}: {hotelDesc}');
$template->write('</title>');
$template->css->get();
$template->js->get();
$template->write('</head>');
$template->write('<body>');
$template->html->get($engine->secure($_GET['url']));
$template->write('</body>');
$template->write('</html>');
$template->outputTPL();
?>
You must be registered for see links
If anyone has a solution please tell me below!