contiw Posted August 17, 2010 Share Posted August 17, 2010 Short of deleting, how do I comment out code like this : <!-- IF not S_DISPLAY_RECENT --> <!-- INCLUDE portal/block/recent.html --> <!-- ENDIF --> Nesting <!-- --> /*...*/ // do not work. Thanks Quote Link to comment https://forums.phpfreaks.com/topic/210905-commenting-out-code-noob/ Share on other sites More sharing options...
joel24 Posted August 17, 2010 Share Posted August 17, 2010 /* and */ works. /* <!-- IF not S_DISPLAY_RECENT --> <!-- INCLUDE portal/block/recent.html --> <!-- ENDIF --> */ //or you can comment out a single line like this Quote Link to comment https://forums.phpfreaks.com/topic/210905-commenting-out-code-noob/#findComment-1100037 Share on other sites More sharing options...
contiw Posted August 17, 2010 Author Share Posted August 17, 2010 Thanks Joel. No, /*... */ and //, do not work. The file is an .html, but I don't think there is a difference. I have been told that some code do not work well when using IIS server instead of Apache, for example (I am working on local). Could it be the case ? Quote Link to comment https://forums.phpfreaks.com/topic/210905-commenting-out-code-noob/#findComment-1100052 Share on other sites More sharing options...
joel24 Posted August 17, 2010 Share Posted August 17, 2010 /* and // are to comment out text in a PHP file, commenting out in PHP and HTML files is completely different. the commenting out you posted was correct for html: <!-- IF not S_DISPLAY_RECENT --> <!-- INCLUDE portal/block/recent.html --> <!-- ENDIF --> Although I don't see what you're trying to do? HTML hasn't the ability to process IF and INCLUDE statements... Quote Link to comment https://forums.phpfreaks.com/topic/210905-commenting-out-code-noob/#findComment-1100116 Share on other sites More sharing options...
Pikachu2000 Posted August 17, 2010 Share Posted August 17, 2010 Actually, HTML does have an IF syntax for IE's little, umm, idiosyncrasies. Quote Link to comment https://forums.phpfreaks.com/topic/210905-commenting-out-code-noob/#findComment-1100122 Share on other sites More sharing options...
contiw Posted August 17, 2010 Author Share Posted August 17, 2010 Joel, now I am really confused : The file is an .html. This is php code inside the html: <!-- IF not S_DISPLAY_RECENT --> <!-- INCLUDE portal/block/recent.html --> <!-- ENDIF --> Quote Link to comment https://forums.phpfreaks.com/topic/210905-commenting-out-code-noob/#findComment-1100156 Share on other sites More sharing options...
joel24 Posted August 17, 2010 Share Posted August 17, 2010 you can't run php code in a html file, only the other way around - echoing HTML from a PHP file Quote Link to comment https://forums.phpfreaks.com/topic/210905-commenting-out-code-noob/#findComment-1100158 Share on other sites More sharing options...
JasonLewis Posted August 17, 2010 Share Posted August 17, 2010 Joel, now I am really confused : The file is an .html. This is php code inside the html: <!-- IF not S_DISPLAY_RECENT --> <!-- INCLUDE portal/block/recent.html --> <!-- ENDIF --> And that's not PHP code. That is 3 HTML comments. Quote Link to comment https://forums.phpfreaks.com/topic/210905-commenting-out-code-noob/#findComment-1100172 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.