php - Fatal error: Call to a member function assistance required -


i have taken on website complete.

the website works fine.

for reason following error:

fatal error: call member function navigate() on non-object in c:\xampp\htdocs\studio.php on line 224

this code page @ line 224:

if(!empty($_get['nav'])) {    $params = null;    $params['listorder'] = 'id desc';    $$_get['nav']->navigate($params); <<<this line 224 } 

any assistance appreciated.

$$_get['nav'] refers object dynamically, object not instanciated @ point of calling navigate(), or variable passed $_get['nav'] not correspond defined variable.


Comments

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -