[PHP] $html_code .= include ("filetoinclude.txt");

2002-10-13 Thread Research and Development
Should this work? $html_code .= include ("filetoinclude.txt"); I am populating a variable with html to be printred later as usual: $html_code .= "html". But I have some static html files that I want included in the html that I am storing in the variable. The HTML is in text files. The abo

Re: [PHP] $html_code .= include ("filetoinclude.txt");

2002-10-13 Thread .: B i g D o g :.
Your email is not 100% totally clear with what you are actually trying to accomplish, however, here is an example of how i like to get html source code into a variable from a file. $html_code = implode( '', file( 'filetoinclude.txt' ) ); or append it... $html_code .= implode( '', file( 'fileto