Newbies Me Posted May 25, 2007 Newbies Posted May 25, 2007 Hi guys is it possible to do an Omit in an FX.php FMFind I need to do something like Find * where CompID = $compID but Omit where SalesID = $salesID Any ideas ? Me
Genx Posted May 25, 2007 Posted May 25, 2007 I'd help if you were using the FM PHP API... : This forum is more focused toward straight FM Development (slight generalization). Try www.fmwebschool.com/frm -- their forums are much more oriented to Fx.PHP and the FM API.
mlindal Posted May 31, 2007 Posted May 31, 2007 ummm actually this is the FX.php part of the FMForums site. There is a separate page for the FM API.
Eggshen Posted July 17, 2007 Posted July 17, 2007 It's a fairly simple problem - all you have to do is add a line saying that, in addition to finding one thing find NOT another thing. So, something along the lines of $query->AddDBParam("CompID", $CompID, "eq"); $query->AddDBParam("SalesID", $SalesID, "neq"); $results=$query->FMFind();
Recommended Posts
This topic is 6408 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now