i'm makeing now a shoping cart, i'm successfully write and read a cookie using php, but i cant add multiple data, how to add more then 1 goods to my shoping cart ?
I gues i shoulf us an array, but how to use it working with cookies? i mean how to read an array from my cookie file. Or maybe have easyer way to slove my problem?
<?
setcookie("id", $id);
setcookie("howmany", $howmany);
header('Location: http://localhost/shop/index.php?page=shop&id='.$id);
exit;
?>
read like this
<?
echo('u add id'.$_COOKIE["id"].' as'.$_COOKIE["howmany"].' thank you');
?>