Jump to content

This topic is 7482 days old. Please don't post here. Open a new topic instead.

Recommended Posts

  • Newbies
Posted

Thanks for your reply. I already got a query result, but I still can't show data. An example:

...

$myQuery->AddDBParam('C

  • Newbies
Posted

Hi again and thanks for your fast reply. I tried what you said, but I didn't work. I also tried with other fields with '

Posted

I guess the trick is to see what is actually stored as the key to the Associative Array. That is:

$result['data'][$recordID][?]

If you can print/echo these keys to the screen it may indicate how the string is stored.

The recode_string() php function may be useful.

All the best.

Garry

Posted

Try dumping the associative array $result right after making the call to Find as such:

$result = $myQuery->FMFind();

// Debugging Stuff Follows

print_r ($result); // -- Dump $result to the screen for debugging

exit; // -- Halt the script

// End of Debugging

This will give you a good look at what you are returning from your query.

regards...

Bob Minteer

  • Newbies
Posted

Cheers! I forgot that option!! Oh well, I did that and I got $result's array structure... and found out that "C

This topic is 7482 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.