View Single Post
  #2  
Old 01-09-2011, 11:16 AM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 618,841
Hall of Famer is on a distinguished road
Default RE: Problems with percentage bar

Apparently you forgot to enclose this if statement and your while loop with } symbols:

PHP Code:
if(is_numeric($id)){ 
PHP Code:
while ($i 1) { 
You have five { symbols but only three }, which is not consistent with PHP syntax. Try to add two more } to the appropriate locations of your php file and it should work then.

Edit: Guess you've figured out how to resolve this syntax error? Thats good, have fun coding!
Reply With Quote