This is very important for me. please tell me if i use <!--include "formname.html--> will it be seen as a single page. Also, is it a good thing as per Search Engine perspective?
this will work only if you using the phpbb because this is the system of its templete engine or if you want yo use the same sytax in other scripts you must use 'easy emplate' is great PHP Templates Engine http://www.jooria.com/scripts/PHP-Templates-Engine-118/easy-emplate-829/index.html Code (markup): but if you want any other PHP Templates Engine see this http://www.jooria.com/scripts/PHP-Templates-Engine-118/ Code (markup):
This is not a template syntax. This is apache's SSI (Server Side Include) syntax. http://httpd.apache.org/docs/1.3/howto/ssi.html
In php there are 2 functions that do this 1st : <?Include("filename.html");?> PHP: 2nd : <?Include_once("filename.html");?> PHP: Thanks, >Harry
I mentioned this in a previous thread, STAY AWAY from include unless you seriously must. read or file_get_contents work better. no injections are possible.