Hi,
I have function wich get a line from the database under a model, and i want to use data in php...
And how to know php error ?
Thanks
I have function wich get a line from the database under a model, and i want to use data in php...
And how to know php error ?
Thanks
Hi Chris,
You can get the function data in PHP using this code:
If this is a "read data" function and its set to return the "first matching record" only then the first line data is:
Best regards,
Max
You can get the function data in PHP using this code:
$this->get("function_name");
If this is a "read data" function and its set to return the "first matching record" only then the first line data is:
$this->get("function_name.Model"); // all fields
$this->get("function_name.Model.field"); // single field
Best regards,
Max
This topic is locked and no more replies can be posted.