zreedeecom on 10/31/10
Last Edited at 10/31/10 09:08am
<?php $array = array( [0] => "value 1", [1] => "value 2" );$output = implode( ",", $array );echo $output; # This will output:# value 1,value 2
Report this snippet Tweet
Comment:
You need to login to post a comment.