Hi,
I want to implode a multi-dimensional array into 1 string.
I use the next code to put it into the array:
$spots = Array();
$rows = explode( "@", $row['spots'] );
foreach( $rows as $rij )
{
$spots[] = explode( "&", $rij );
}
( After the implode, you should get a string that looks like this:
1&2&[EMAIL PROTECTED]&0&[EMAIL PROTECTED]&2&1 )
I'm having trouble with imploding them, can somebody help please?
Grtz,
RC
----------------------------------------------------
[EMAIL PROTECTED]/
http://www.wuyts.org/tom/phpbb2/
----------------------------------------------------