dosya adı myServices.php
<?php
$gender = 'MALE';
?>
Başka bir dosyada Diyelim file.php
include "myServices.php"
$name = 'SAM';
$age = '23';
?>
<!--after some more HTML code-->
<?php
$gender = 'FEMALE';
$name = 'ELENA';
//Question:
//In the above statements are there new variables created or the
//previous variables are reassigned new values
?>