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
assgar
Forum Commoner
Posts: 46 Joined: Fri Apr 20, 2007 9:00 pm
Post
by assgar » 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.
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
?>
RobertGonzalez
Site Administrator
Posts: 14293 Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA
Post
by RobertGonzalez » Thu May 31, 2007 11:41 am
What does this thread relate to?