Jump to content

php5 help


weeder

Recommended Posts

$output .= $this->ipsclass->compiled_templates['skin_perfect_store']->skin_feature_form_line($q,$a);

In PHP5 ' $this-> ' is a reference to a method from a previously declared class.  When the above fires, PHP is saying that your trying to point to the ipsclass method, but it doesn't exist in any previously declared classes.

So you need to declare the class before the class method pointer fires.

Ex.

<?php

$myObj = new theNameOfTheClassThatContainsThe_ipsclass_Method();

$output .= $this->ipsclass->compiled_templates['skin_perfect_store']->skin_feature_form_line($q,$a);

?>
Link to comment
https://forums.phpfreaks.com/topic/23758-php5-help/#findComment-108029
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.