class Controller_Hello extends Controller { function action_index() { echo 'Hello, World!!'; // This throw error } }Fuel way:
class Controller_Hello extends Controller { function action_index(){ return 'Hello, World!!'; // This run ok } }
It looks like you're new here. If you want to get involved, click one of these buttons!