Everyone - I need find a unique delmieter for a list I'm creating via. the explode method:
here's what I have now..
$strSql = explode(",", $strSql);
Which works great to create an array from a comma delmited list, but if one of the values in the list has a comma in it..
The list is then obviously corrupt.
Any ideas?