1
0
www.mikescher.com/demos/helloworld/protected/controllers/SiteController.php

15 lines
253 B
PHP

<?php
/**
* SiteController is the default controller to handle user requests.
*/
class SiteController extends CController
{
/**
* Index action is the default action in a controller.
*/
public function actionIndex()
{
echo 'Hello World';
}
}