I'm moving my website online, but when i edit my table data i got errors like this,
A PHP Error was encountered
Severity: Warning
Message: Cannot modify header information - headers already sent by (output started at /home/shintiad/public_html/sociotraveler/application/views/template/index.php:20)
Filename: libraries/Session.php
Line Number: 688
A PHP Error was encountered
Severity: Warning
Message: Cannot modify header information - headers already sent by (output started at /home/shintiad/public_html/sociotraveler/application/views/template/index.php:20)
Filename: helpers/url_helper.php
Line Number: 542
my template/index.php code
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta -->
<?php $this->load->view('template/partial/meta');?>
<!-- Meta -->
</head>
<body>
<!-- Header -->
<?php $this->load->view('template/partial/sidebar');?>
<!-- Header -->
<!-- Dynamic Content -->
<div class="content">
<?php $this->load->view("{$page_info->content}");?>
</div>
<!-- Dynamic Content -->
<!-- Footer -->
<?php $this->load->view('template/partial/footer');?>
<!-- Footer -->
</body>
</html>
when i ran it on my localhost everything was alright..Please help, thank you... *i've checking white space before