Jump to content

Warning: Cannot use a scalar value as an array in


blazer19

Recommended Posts

Hi i am currently getting these errors when trying to set up an ecommerce site

 

 

Warning: Cannot use a scalar value as an array in /homes/06020478/www/add_item.php on line 8

 

Warning: Cannot modify header information - headers already sent by (output started at /homes/06020478/www/add_item.php:8) in /homes/06020478/www/add_item.php on line 9

 

 

Here is my code

 

<?php
$prod_id = $_GET['id'];

if($_SESSION['CART'][$prod_id]) {
header ('location:purchasing.php?error=1'); 
}else{	
$_SESSION['CART'][$prod_id] = true;
header ('location:basket.php'); 
}
?>

 

 

I would be so greatful to any ideas as to what the problem is

 

Thanks

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.