Recently I worked in a project there I wrote the following code in top of the page:
<?php
session_start();
include_once('../module/connection.php');
$_SESSION['lang']=$_GET['ses'];
if(($_SESSION['lang']=='') || ($_SESSION['lang']=='english'))
{
$l='japanese';
}
else if($_SESSION['lang']=='japanese')
{
$l='english';
}
When I run that page it shows the following warning:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /var/www/sites/subdomains/www/html/ussl/juu/area/index.php:1) in /var/www/sites/subdomains/www/html/ussl/juu/area/index.php on line 1
How can I solve this?