Problem in Filemaker API with PHP 5.3.5

These problem occur because of PHP 5.3.5 no more supports many calling functions.

To solve some of this problem you need to check every extension included in your php.ini file such as curl, soap etc is enabled or not.

Then you can hide the Deprecated and strict errors using the following code –

***** error_reporting( E_ALL & ~( E_STRICT | E_DEPRECATED ) ); *****

Now you can perform all your database interaction with Filemaker.

150 150 Burnignorance | Where Minds Meet And Sparks Fly!