/+junk/StupidMVC

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/StupidMVC

« back to all changes in this revision

Viewing changes to Application/Views/WelcomeView.php

  • Committer: Gustav Hartvigsson
  • Date: 2016-03-16 18:40:10 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20160316184010-elzcri35x8y4vl43
* changed how AbstractController->load_view_raw () works

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
  public function
6
6
  render ($user_data) {
7
7
    echo "<h1> Hello from Welcome.php! </h1>";
 
8
    ?>
 
9
      <p>
 
10
        You could have a try looking at the examle
 
11
        <a href="<?=( BASE_URL . "Welcome/hello/Alice" )?>"> here </a> and
 
12
        <a href="<?=( BASE_URL . "Welcome/hello/Bob" )?>"> here </a>
 
13
      </p>
 
14
    <?php
8
15
  }
9
16
  
10
17
}