How do I loop through an array and adding each value to the end of a string, this string will be put into mysql, so i would like to add newlines after each element too...
Thanks for all the help..
foreach ($PSarray as $key => $value)
{
$MYps = $value.' <br />';
}