Reputation: 13843
I have the following <DIV>:
<div class="general">
Some content here
</div>
I want to do a PHP include just before
Is this possible in PHP?
Upvotes: 0
Views: 298
Reputation: 84140
<?php include "file.php"; ?>
<div class="general">
Some content here
</div>
Upvotes: 4