solution

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
assgar
Forum Commoner
Posts: 46
Joined: Fri Apr 20, 2007 9:00 pm

solution

Post by assgar »

My problem with the scrolling is solved. It was looking blurred because of a duplicate function displaying the same info.

Code: Select all

<? 
Function display()
	{
	   Return $multiple_array_values;
	}
   List() = display();//NOTE: this was creating the duplicate
?>
Changed to

Code: Select all

<?
Function display()
	{
	   Return $multiple_array_values;
	}
   List() = $multiple_array_values
?>
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post by RobertGonzalez »

Image :?

What does this thread relate to?
Post Reply