I sometimes think it is useful to see exactly what variables (and values are being passed to the view in cakePHP), especially if the project you are working on is complex with much pseudo repetitive data.
A simple solution to do this is to insert this piece of code in your view:
foreach ($this->getVars() as $name) { pr($$name); }











