Last active
August 29, 2015 13:57
-
-
Save chrisamoore/9879909 to your computer and use it in GitHub Desktop.
Codeigniter help ... i think ?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//... Not verbatim but gisty | |
public function controllerAction(){ // index whatever | |
$data['survey'] = $surveyData = $this->getSurvey(); | |
$this->load->view('view', $data); | |
} | |
public function getSurvey(){ | |
// Get the data | |
return $data; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title><?php echo $survey->title;?></title> | |
</head> | |
<body> | |
<h1><?php echo $survey->getTitle();?></h1> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment