[FX.php List] Solved? Anyone got a sober solution to a date range search?

Gjermund Gusland Thorsen ggt667 at gmail.com
Mon Aug 11 04:49:34 MDT 2008


I know this worked with Filemaker 5/6
---
$q = new FX( $serverIP, $webCompanionPort );
$q->SetDBData( $database, 'unit', 'all' );
$q->AddDBParam( 'datefield', '1/7/2008...31/7/2008' );
$r = $q->FMFind();
---

But what is the FileMaker 7/8/9 equivalent on the XML RPC level to
FileMaker's: 1.7.2008...31.7.2008 ?

:-) Hmm it looks like this works! :-) I just played around with the
characters and numbers.
---
$q = new FX( $serverIP, $webCompanionPort );
$q->SetDBData( $database, 'unit', 'all' );
$q->AddDBParam( 'datefield', '7.1.2008...7.31.2008' );
$r = $q->FMFind();
---

ggt


More information about the FX.php_List mailing list