CLiown
CLiown

Reputation: 13843

PHP - Insert content at specific point in HTML

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

Answers (1)

Gazler
Gazler

Reputation: 84140

<?php include "file.php"; ?>
<div class="general">

Some content here

</div>

Upvotes: 4

Related Questions