I keep getting the error message below. This problem does not exist on my localhost(xampp). It is when the files are on the server that I get this problem.
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/plosta/public_html/bloom/Connections/bloom.php:1) in /home/plosta/public_html/bloom/signin.php on line 158
this happens on the server but not on the localhost
<?php
//bloom.php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_bloom = "localhost";
$database_bloom = "datacenter";
$username_bloom = "root";
$password_bloom = "";
$bloom = mysql_pconnect($hostname_bloom, $username_bloom, $password_bloom) or trigger_error(mysql_error(),E_USER_ERROR);
?>