A few things to consider:

 1) double check the include path.
 2) if you're not the appropriate file is being included, then user
    REQUIRE, as that will stop the program.

 3) Variable Scope
    Your function variables may be out of scope. Double check them, or
    make them global.

 4) If you include a file from within a function, then the scope of that
    file is only WITHIN that function.
    {something to that line...}

   double check your variable scopes.


hope that helped.

-john



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to