array to a single string
Posted: Thu Aug 19, 2010 10:06 am
Hi,
i have this array
Which works well, but i want to take the resulting list and use it in a mysql db as $prodList
I have tried
and all i get back is one result, how can i get the full list in $prodList
Cheers
Kevin
i have this array
Code: Select all
foreach ($_COOKIE['TestCookie'] as $value){
echo $value.' ';
}I have tried
Code: Select all
foreach ($_COOKIE['TestCookie'] as $value){
$prodList = $value.' ';
}Cheers
Kevin