Hi,
In my game i POST a Dictionary.AsJson through AJAX that then gets saved on a mysql database. When i retrieve that data i have to set a separator in php to get the list in form of an array, the code line look like this :
echo $rows['Name']. "|" . $rows['DictJson']. "|" . $rows['OtherData']. "|"
We generally use "|" as separator but in this case that causes a problem because dictionary is saved like "a|b|c|X|y|Z" and when i use tokenat(AJAX.LastData, 1, "|") it doesn't give the right json as it detects a "|" in between dictionaryjson data.
I used ">|<" instead of "|" to solve this but that also causes issue some times, so i wanna know if there is a better separator that will work with all kinds of data correctly?