August 11, 200421 yr Newbies Hi! I have a problem with FX.php and I couldn't solve it yet. ... $conn->AddDBParam ('C
August 11, 200421 yr Author Newbies Thanks for your reply. I already got a query result, but I still can't show data. An example: ... $myQuery->AddDBParam('C
August 13, 200421 yr Author Newbies 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 '
August 14, 200421 yr 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
August 14, 200421 yr 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
August 14, 200421 yr Author Newbies Cheers! I forgot that option!! Oh well, I did that and I got $result's array structure... and found out that "C
Create an account or sign in to comment