A micro PHP framework that's fast, easy, clean and RESTful. The framework does not do a lot of magic under the hood. It is, by design, very simple and very powerful.
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'.
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 :
If I do a var_dump of $params or just $pageTitle on my template it return me 'NULL'.
Am I doing something wrong ? Thanks.