September 25, 200916 yr Hello Guys, In Php page I am displaying the content from FileaMaker database. Where as the [color:red]part of formated text in Filemaker field which is stored is lost on php page. I need to get the formatted text displayed in php page as it is in FileMaker field. Awaiting for ur replay
September 25, 200916 yr If I understand you correctly, you have a text field with rich text formatting and you want the formatting to bleed through to the web. Let's say your text field is called "Description" - in FileMaker, make a new calc field called "Description CSS" with the following formula: GetAsCSS ( Description ) Then, add Description CSS to the FileMaker layout that you are pointing your PHP query at. Then, in the PHP page where you are doing the query, you'll need to change this: $record->getField('Description'); to this: $record->getFieldUnencoded('Description CSS'); HTH, j
September 30, 200916 yr Author Awesome! It works.... Thankyou JothanStark. Edited September 30, 200916 yr by Guest
Create an account or sign in to comment