include statement

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • musicpro64@gmail.com

    #1

    include statement

    Has anyone ever experienced an issue with an include statement where
    the included file is processed, however, no further code is processed
    after the included content? I have used includes for quite a while,
    however, this is a new one for me. Any suggestions would be
    appreciated.

    Thanks

  • ZeldorBlat

    #2
    Re: include statement

    On Jul 5, 10:09 pm, musicpr...@gmai l.com wrote:
    Has anyone ever experienced an issue with an include statement where
    the included file is processed, however, no further code is processed
    after the included content? I have used includes for quite a while,
    however, this is a new one for me. Any suggestions would be
    appreciated.
    >
    Thanks
    Sure -- if there's a fatal error in the include or immediately after.
    Crank up error_reporting and enable display_errors in php.ini to see
    if there are any messages you might be missing.

    Comment

    • musicpro64@gmail.com

      #3
      Re: include statement

      On Jul 5, 10:42 pm, ZeldorBlat <zeldorb...@gma il.comwrote:
      On Jul 5, 10:09 pm, musicpr...@gmai l.com wrote:
      >
      Has anyone ever experienced an issue with an include statement where
      the included file is processed, however, no further code is processed
      after the included content? I have used includes for quite a while,
      however, this is a new one for me. Any suggestions would be
      appreciated.
      >
      Thanks
      >
      Sure -- if there's a fatal error in the include or immediately after.
      Crank up error_reporting and enable display_errors in php.ini to see
      if there are any messages you might be missing.
      Thanks a lot for the advice. I have been running in circles with this
      code. Have not used these error tools yet... thank you so much.


      Comment

      Working...