Skip to content

Instantly share code, notes, and snippets.

@tetu1225
Created August 21, 2011 08:09
Show Gist options
  • Save tetu1225/1160321 to your computer and use it in GitHub Desktop.
Save tetu1225/1160321 to your computer and use it in GitHub Desktop.
Fuelを試す。
<h1>Hello!</h1>
<p>Hey <?php echo $name ?>, how's it going?</p>
<?php
class Controller_Hello extends Controller {
public function action_index() {
echo "Hello World!";
}
}
?>
<?php
class Controller_Hello extends Controller {
public function action_index() {
echo "Hello World!";
}
public function action_buddy($name = 'buddy') {
$this->response->body = View::factory('hello', array('name' => $name));
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment