jin5151 Posted March 8, 2006 Share Posted March 8, 2006 Hi I have multiple functions and i cant figure out how to combine two functions. I have a function that displays a title and description. There is also one for displaying rating. I want to find a way to combine the information on the first function with the second. Is this possible? I have manage to make theme display seperatly, but I cant make it show together. Here is an example:[code]function description($ID){print "<A HREF=\"$Url\" TARGET=\"_BLANK\"><B>$LinkName</B></A> - $Desc<BR>\n";print "<small><strong>URL: </strong><font class=\"text123\">$Url</font></small><BR>\n";print " $rating"; <----I want rating there }function rating($ID){print "$rating\n" <--There is more to this function }[/code] Quote Link to comment Share on other sites More sharing options...
logu Posted March 8, 2006 Share Posted March 8, 2006 Hi, You can call the one function form another of same class using 'this' operator. you can use like this function description($ID){ ....... print ($this->rating($ID));} Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.