Hello i have a question, i dont know if that is possible.
I want to call a external page and echo like this below.
index.php
<?php include 'extern/connect.php';
$title = file_get_contents('extern/title.php');
?>
<head>
<title><?php echo $title; ?></title> //here i want to echo also $a from title.php
</head>
Title.php
<?php
$a ="Youtube";
$b ="Facebook";
$c ="Myspace";
$d ="Google";
?>
Is that possible ?
Thanks for any help