Hi, Thursday, September 23, 2004, 10:34:14 PM, you wrote: P> If i have an array P> $array = array(1, 2, 3, 4, 5, 6, 7) P> How can i display the array element sepparated by (;) like this P> $display = 1;2;3;4;5;6;7
P> Thanks
Straight from the manual
$string = implode(";", $array);
--
regards,
Tom
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

