I have a module built in CakePHP that is hosted within an iFrame. I need to have a redirect target the parent page. Using normal HTML I do:
<a href="#" target="_parent">
But how do I do that for CakePHP redirect?
$this->redirect('http://www.url.com');

targetattribute, or are you trying toredirectfrom the Controller. That's two different things. – deceze Jul 23 at 5:43