Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- //create a comma separated list from an array
- $array = array('green','purple','blue','yellow','amber','red');
- $comma_separated = implode(",", $array);
- echo $comma_separated;
- ?>
Advertisement
Add Comment
Please, Sign In to add comment