How to get the layout structure deatils of filemaker layout in node?

27 views
Skip to first unread message

annas

unread,
Aug 13, 2015, 6:10:37 PM8/13/15
to nodejs
Hi ,

How to get the layout structure of filemaker layout in node?
I need a layout/table fields and its types . Is there any way to get these in node.js ? 
Please help me 

Thanks,

lance123

unread,
Aug 14, 2015, 9:33:29 AM8/14/15
to nodejs
Hi Annas,

You are able to use frameworks such as FXPHP http://www.iviking.org/FX.php/ to make a php query.  You would just need to initiate the php query from node.  You can get all the layout metadata from FXPHP.



var request = require('request');
request.post({
  url:     'http://localhost/test2.php',
  form:    { mes: "heydude" }
}, function(error, response, body){
  console.log(body);
});

Regards,

Lance
Reply all
Reply to author
Forward
0 new messages