Hello,
I am new to phalcon and probably going to ask allot of questions here.
I have used phalcon devtools to create a project skelleton.
And did some testing in the indexAction(){} from the indexController.
my index controller looks like:
class IndexController extends ControllerBase
{
public function indexAction()
{
echo "OUUUUUTPUUUUUUUUUUUUUUUT";
}
}
and index.volt looks like:
<!DOCTYPE html>
<html>
<head>
<title>Phalcon PHP Framework</title>
</head>
<body>
<?php echo $this->view->getContent(); ?>
{{ content() }}
</body>
</html>
I know this way I am getting double the content. But this is for debugging. The output I get is:
I am using chrome browser for testing, and ubuntu server 12.04 for phalcon 1.3.0