I have the following function being called multiple times in a
controller:
function _link_node($lat, $lng, $line_id){
$result = $this->Node->query('SELECT COUNT(*) FROM nodes');
var_dump($result);
$result = $this->Node->find("lat = $lat AND
I have the following function being called multiple times in a
controller:
function _link_node($lat, $lng, $line_id){
$result = $this->Node->query('SELECT COUNT(*) FROM
nodes');
var_dump($result);
$result = $this->Node->find("lat = $lat AND
You guys are both awesome. Saved me a ton of head ache. Thanks!
On Jan 6, 2:53 am, AD7six <[EMAIL PROTECTED]> wrote:
> On Jan 6, 8:18 am, Gene <[EMAIL PROTECTED]> wrote:
>
>
>
> > I have the following function being called multiple times in a
> > controlle