Page 1 of 1

solution

Posted: Thu May 31, 2007 11:34 am
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
?>

Posted: Thu May 31, 2007 11:41 am
by RobertGonzalez
Image :?

What does this thread relate to?