-
-
Notifications
You must be signed in to change notification settings - Fork 140
Open
Description
Hello.
I try to render a template with some params.
Those params contains the result of a sql statement.
That sql statement is working, i know that because I have an api that use the same and that work perfectly.
Here is what I do :
public static function editproject(){
$template = new EpiTemplate();
$params = array();
$params['pageTitle'] = 'Edit Project';
$project = getDatabase()->one('SELECT * FROM projects WHERE id = '.$_GET['id']);
$params['project'] = $project;
$template->display('edit-project.php', $params);
}
If I do a var_dump of $params or just $pageTitle on my template it return me 'NULL'.
Am I doing something wrong ?
Thanks.
Metadata
Metadata
Assignees
Labels
No labels