I would recommend learning the basics of PHP before getting into
CakePHP.  Many people already experienced with PHP find a steep
learning curve.

When you want to call another function from inside the same object,
use $this->function_name(), not $this->function function_name();  eg:
$this->build_resume()

The error about "sequence is not defined" is because you have not
provided a default value for the $sequence parameter, and you are not
passing one one from the request.  Change it to
function move_up( $sequence=null )
and it will fix the error.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to