Source code quote in PHPn° 222
July 23, 2014 am31 01:19
<?php
//Took me a while... Finally got it to work :)
// (xxxx), would you check if this is right?
$arrayString='12,53,653,12,54,65,334,73';
$arrayExploded=explode(',',$arrayString);
$arrayStringNew=implode(';',$arrayString);
?>