November 11, 200916 yr Newbies Can anyone please help with this which sounds simple...? I am displaying record details of a FileMaker record using php api. I would like one of the fields in a record to be a hyperlink to the field's contents which is a URL of a pdf document. This is my base code without the appropriate hyperlink. The actual FMP field name of the URL is httpForm. <?php echo $record->getField('Form'); ?> Edited November 12, 200916 yr by Guest
November 28, 200916 yr It's not clear from you question whether or not you are storing the raw HMTL in FileMaker or if you are trying it compose it in the PHP based on FileMaker data. If you are storing HTML in FileMaker, you need to use getFieldUnencoded() instead of getField().
November 28, 200916 yr Make a calculation containing all necessary PHP scripting for links. Publish this field via PHP API and you get result - link
January 25, 201015 yr @jonathanstark Just wanted to say thanks for the tip about accessing unformated data through PHP. That was great and really helped me.
Create an account or sign in to comment