a.php
Alıntı
<?php
$ornek = 'örnek değişken';
?>
b.php
Alıntı
<?php
include 'a.php';
echo $ornek;
?>