when i test my php in a browser i got this Parse error: syntax error, unexpected T_REQUIRE_ONCE for this line of coding that is wrong; require_once ('fibonacciExampl'); . so am i doing this right or am i missing something?
You probably need to post the surrounding code. Basically the error message is telling you that that piece of code should not have been there, so even though the line itself may be correct, what comes before that line could be wrong.
I'll place a sizable bet on it being a missing semi-colon (not) terminating the previous command. 🙂