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

12 lines
125 B
PHP

<?php
class TestController extends AppController {
function index() {
return "<h1>OMG TEST</h1>";
}
}
?>