Hi,
As I had issues with my old host, those days I worked to change it and didn’t had the time to post another nice php function called implode. This function php implode() simply joins the array elements into a string. Remember the explode function? Well this makes the reverse I would say in some way. Have a look :
<?php $array = array("one", "two", "three"); $string = implode(",", $array);//make the "implosion" print $string; //will return one, two, three ?>
Thanks For the Tutor