holyearth Posted July 9, 2007 Share Posted July 9, 2007 I am having a unique issue which no can seem to figure out... My site is not loading properly in IE7 ... an image after an "include" function wont load. (ONLY in IE7) If I take out the include ... the image loads.... Im thinking because the include takes a few seconds to load IE7 forgets to load the image afterwards or something... So, can I have the page begin the inclusion at the top like a preinclude or something ... then tell it later to insert here...? Not really familiar with PHP, so im not sure if this is do-able... Quote Link to comment Share on other sites More sharing options...
Psycho Posted July 9, 2007 Share Posted July 9, 2007 Includes are handled server-side. The page is not sent to the browser until the script completes, so it is not an issue of timing. My guess is that the include has some code that is changing the html such that the image code is not recognized by IE7. Have you checked to HTML output to verify that the image code is correct? Show some code for more assistance. More directly to your question, there is no pre-include functionality that I am aware of. You could include the code as a function and then run the function later in the code though. Quote Link to comment Share on other sites More sharing options...
holyearth Posted July 9, 2007 Author Share Posted July 9, 2007 Thanks I will follow up with you via PM Quote Link to comment Share on other sites More sharing options...
trq Posted July 9, 2007 Share Posted July 9, 2007 I will follow up with you via PM Why? This is a public forum, post your problems / followups here. Read the guidelines if you have a problem understanding how this place works. 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.