box-o-sand/php-practice/web-cake/html/app/controllers/test_controller.php

12 lines
125 B
PHP
Raw Normal View History

2011-01-03 14:38:16 +00:00
<?php
class TestController extends AppController {
function index() {
return "<h1>OMG TEST</h1>";
}
}
?>