I have 5 scripts:
database.php
parent.php
child1.php
child2.php
You should use require_once and include_once. Inside parent.php use
include_once 'database.php';
And inside child1.php and child2.php use
include_once 'parent.php';