i have 2 pages their heads are like this
header:
<?php require_once "database.php"; ?>
page:
<?php require_once "database.php";
//some codes;
require_once "header.php"; ?>
I had to require database again for a script to collect data correctly for a specific page, Would that affect the page performance? Or the _once
fixes that?