[eluser]Unknown[/eluser]
I have a controller welcome:
Code:
<?php
class Welcome extends Controller {
function Welcome()
{
parent::Controller();
}
function index()
{
$widok = array ('site_url' => site_url(),
'base_url' => base_url() );
$this->load->view('welcome_message', $widok );
}
}
?>
and view welcome_message
Code:
<html>
<head>
<title>Welcome to CodeIgniter</title>
</head>
<body>
site_url = <?=$site_url;?><br />
base_url = <?=$base_url;?></br>
{elapsed_time}
</body>
</html>
And here I have a problem, place where vars site_url and base_url should be shown i cannot see nothing :/