Skip to content

Instantly share code, notes, and snippets.

@chrisamoore
Last active August 29, 2015 13:57
Show Gist options
  • Save chrisamoore/9879909 to your computer and use it in GitHub Desktop.
Save chrisamoore/9879909 to your computer and use it in GitHub Desktop.
Codeigniter help ... i think ?
<?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;
}
<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