<?php
class demoActions extends sfActions
{
public function executeHelloWorld($request)
{
$this->title = 'Test';
$this->body = 'Hello World';
return sfView::SUCCESS;
}
}
?>
<html>
<head>
<title><?php echo $title?></title>
</head>
<body>
<?php echo $body ?>
<?php decorate_with(false) ?>
</body>
</html>
Response time: 0.05 secs Transaction rate: 100.63 trans/sec