Ultragames
10-04-2004, 08:54 PM
This is tha page with the errors (http://www.thecenterforadvancedlearning.org/~webdesign/tyler_vigeant/Store/store2.php)
I am getting the following errors:
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /home/webdesign/public_html/~~~/Store/store2.php:3) in /home/webdesign/public_html/~~~/Store/store2.php on line 4
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/webdesign/public_html/~~~/Store/store2.php:3) in /home/webdesign/public_html/~~~/Store/store2.php on line 4
I beleive the code that is generating this error is:
session_start();
$Type = $_SESSION['Type'];
$Size = $_SESSION['Size'];
$Color = $_SESSION['Color'];
$fname = $_SESSION['fname'];
$lname = $_SESSION['lname'];
$email = $_SESSION['email'];
$phone1 = $_SESSION['phone1'];
$phone2 = $_SESSION['phone2'];
$phone3 = $_SESSION['phone3'];
$street = $_SESSION['street'];
$city = $_SESSION['city'];
$state = $_SESSION['state'];
$zip = $_SESSION['zip'];
$special = $_SESSION['special'];
What is it thats causing these errors? What can i do to fix it? Thanks.
I am getting the following errors:
Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /home/webdesign/public_html/~~~/Store/store2.php:3) in /home/webdesign/public_html/~~~/Store/store2.php on line 4
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/webdesign/public_html/~~~/Store/store2.php:3) in /home/webdesign/public_html/~~~/Store/store2.php on line 4
I beleive the code that is generating this error is:
session_start();
$Type = $_SESSION['Type'];
$Size = $_SESSION['Size'];
$Color = $_SESSION['Color'];
$fname = $_SESSION['fname'];
$lname = $_SESSION['lname'];
$email = $_SESSION['email'];
$phone1 = $_SESSION['phone1'];
$phone2 = $_SESSION['phone2'];
$phone3 = $_SESSION['phone3'];
$street = $_SESSION['street'];
$city = $_SESSION['city'];
$state = $_SESSION['state'];
$zip = $_SESSION['zip'];
$special = $_SESSION['special'];
What is it thats causing these errors? What can i do to fix it? Thanks.