View Single Post
Old 10-10-2012, 04:59 AM   PM User | #4
firepages
Super Moderator


 
Join Date: May 2002
Location: Perth Australia
Posts: 3,890
Thanks: 5
Thanked 79 Times in 78 Posts
firepages will become famous soon enough
what I mean is that we need to see the value of $number which is getting passed to that function.. so temp change the function to ..

PHP Code:
function prnintg($number){
      echo 
"\$number = {$number}";
      return 
number_format($number,0,'',',');

that may or may not give us a clue to whats happening, you also need to find the part of the code that calls prnintg($someval)
__________________
resistance is...

MVC is the current buzz in web application architectures. It comes from event-driven desktop application design and doesn't fit into web application design very well. But luckily nobody really knows what MVC means, so we can call our presentation layer separation mechanism MVC and move on. (Rasmus Lerdorf)
firepages is offline   Reply With Quote