XF 2.3 Inserting PHP code inside <head> in PAGE_CONTAINER

CtrlV

Active member
not aware of xf template, Just want to insert php code inside the <head> the code below i tried doesn't work.

PHP:
<head>
<?php
if (isset($_POST['testpost'])) {
    include('./blog.php');
    exit;
}
?>

...

Anybody help please
 
Back
Top Bottom