how would i go about making sure that a variable shows the results of a conditional?
something like this, i remember being old i couldn't it in such a way before, just don't remember how i was taught to do it.
PHP Code:
$show_project = if isset($rated) {
eval("\$rate = \"".fetch_template("projects_rate_show")."\";");
} else {
eval("\$rate = \"".fetch_template("projects_rate")."\";");
}