$view = View::forge('path/to/view', $data, false);
// switch the autofilter of for all variable assignments (bad idea if you want a secure app) $viewobject->auto_filter(false); // assign a variable with filtering disabled $viewobject->set('variable', $value, false); // or use this, which is an alias $viewobject->set_safe('variable', $value);
It looks like you're new here. If you want to get involved, click one of these buttons!