Code: Select all
<?php $Move->edit()->images('image'); ?>Am I doing something wrong or is there something special I have to do to the function first.
Moderator: General Moderators
Code: Select all
<?php $Move->edit()->images('image'); ?>Code: Select all
class Foo
{
function A()
{
$this->B();
}
function B()
{
echo 'heh';
}
}Code: Select all
<?php
//I guess just try this
$this->Move->edit->images('image');
//or maybe this...notice the reference (&) operator. Dunno which will work til i see code.
&$this->Move->edit->images('image');
?>