How can I make a php script add a tab to every line of an include file?
Within my HTML, I have a php script that includes a file. At that point, the code is indented 2 tabs. What I would like to do is make the php script add two tabs to each line. Here's an example: Main page: <body> <div> <?php include("test.inc"); ?> </div> </body> And "test.inc": <p>This is a test</p> <div> <p>This i...