Phil Z.: Mal wieder "headers already sent" -Problem ich weiß nicht warum

Beitrag lesen

Hallo,

ich habe die main.php die so anfängt:

<?php  
include('sql.inc.php');  
include('auth.php');  
$p=$_GET['p'];  
$a=$_GET['a'];  
?>

und die sql.inc.php die so aussieht:

<?php
session_start();
$ms_user='xx';
$ms_pw='xx';
$ms_host='localhost';
$ms_db='xx';
$ms_connect=mysql_connect($ms_host,$ms_user,$ms_pw);
mysql_select_db($ms_db);
$table='xx';
$table2='xx';
?>

vor den <?php steht bei beiden dateien _nichts_ auch kein leerzeichen.

Fehlermeldungen:
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\xampp\xampp\htdocs\2Line-Designs\admin\main.php:1) in C:\xampp\xampp\htdocs\2Line-Designs\admin\sql.inc.php on line 2

Hoffe ihr könnt mir helfen.

Bis dann

Phil