solution
Posted: Thu May 31, 2007 11:34 am
My problem with the scrolling is solved. It was looking blurred because of a duplicate function displaying the same info.
Changed to
Code: Select all
<?
Function display()
{
Return $multiple_array_values;
}
List() = display();//NOTE: this was creating the duplicate
?>Code: Select all
<?
Function display()
{
Return $multiple_array_values;
}
List() = $multiple_array_values
?>