else if(mysql_num_rows($result)==1) // <-- If ONE row is returned
{
$my_session = mysql_result ($result, 0, 'u_id'); // <-- then user is Authentic & Start session
$_SESSION['clans'] = $my_session;
header('location:../FINAL/index.php');
}
As you can see the above, it is a script for a log-in page, basically saying that if row is returned from my MySQL then take user to index page.
Unfortunately, I am having a header already sent error.
For two days, I have tried to figure out this problem but no hope.