coder9 Posted July 19, 2008 Share Posted July 19, 2008 Ok i have this scripts that is not written by me? The whole site has hundreds of .php page. so digging them will really take time. what i did was, i created a simple loop like this one below. function check_selected_box3() { $i=0; while($i<=10) { echo "Nasaan? <br>". $i; } } and called that function inside into the existing script not written by me? then i noticed also the tab of firefox browser display the '500' message. i'm not sure about that 500. What do you think is the cause of this, not displaying the page? Any smart guess? Thank you in advance. Quote Link to comment Share on other sites More sharing options...
marklarah Posted July 19, 2008 Share Posted July 19, 2008 500 is internal server error. Its either bad existing code (in which case don't ask us), or your loop is conflicting. Did it work before you added this code? You can't just say "I have some bad code, im getting an error. Why?" ... we don't know the code, the error, or why. You need to be less vague. Quote Link to comment Share on other sites More sharing options...
coder9 Posted July 19, 2008 Author Share Posted July 19, 2008 ok problem solved i forgot the $i++; inside the loop. lol Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.