Skip to content

My params are vanishing #93

@tsbits

Description

@tsbits

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions