1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php $blog_title = "test"; ob_start(); ?> <h1>test page</h1> <p>welcome to my blog! currently it's empty but at some point i'm gonna fill it out with shit. idk yet tho.</p> <?php $blog_content = ob_get_clean(); include "_builder.php"; ?>