11.08.2015, 09:00
Is it possible to get all the data in a single string and split them up using sscanf with MySQL R38? If so, can someone show me an example please?
//12|31|444 new string[128], value1, value2, value3 ; cache_get_field_content(0, "Field", string); sscanf(string, "p<|>iii", value1, value2, value3); //value1 = 12 //value2 = 31 //value3 = 444