July 15, 201015 yr Newbies Hi, I have a problem with the Filemaker PHP API. I want to get the content of a value list. I'm using the following code : $layout =& $fm->getLayout('my_template'); $list = $layout->getValueList('my_list'); The list is imported successfully, however there are issues concerning special characters (accented letters etc...). For example : "Chargé de mission" will get imported as "ChargChargé de mission". "Animateur du réseau numérique" will get imported as "Animateur du rAnimateur du réseau numérique". When the first special character is encountered, the string is reloaded from the beginning and concatenated with what was already imported. This happens only one time per string (not again for the next accented letters). Is there any way to solve this ? Thanks for your help !
July 18, 201015 yr Try: $layout = $fm->getLayout('my_template'); $list = array_map("htmlentities",(array)$layout->getValueList('my_list')); Edited July 18, 201015 yr by Guest
Create an account or sign in to comment