Skip to content

Instantly share code, notes, and snippets.

@jackmakiyama
Forked from alganet/controller.php
Last active March 14, 2022 19:47
Show Gist options
  • Save jackmakiyama/45830e2d46a5daa47aa8 to your computer and use it in GitHub Desktop.
Save jackmakiyama/45830e2d46a5daa47aa8 to your computer and use it in GitHub Desktop.
<?php
//Sample: http://localhost/controller.php?name=Fulano
include 'model.php';
$hw = new HelloWorld;
$name = $_GET['name'];
$greetings = $hw->say($name);
include 'view.php';
<?php
class HelloWorld {
public function say($name) {
return 'Hello '.$name;
}
}
<!doctype html>
<title>Hello World</title>
<p>
<?php echo $greetings;?>, this is your first MVC.
</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment