I have heard abt word JSON or JSON array. One programmer said me that it can be used for making website with multiple language. It is possible to encode data before inserting to database. So I want to insert data to database in 3 languages how can I do that with json?
$content=array("tr"=>"content in turkish","ru"=>"content in russian","en"=>"content in english")
<input type="submit" value="<?= $LANG['SUBMIT_BUTTON']; ?>" />where$LANG = $LANGUAGES['en-us']. But JSON is just a standard for serializing data. – Brad Christie Nov 3 '11 at 13:36