test1.php
Code: Select all
<?php
$title = 'THIS BETTER WORK!';
?>
<html>
<head>
<title><?php echo $title; ?></title>
</head>
<body>
</body>
</html>test.php
Code: Select all
<?php
echo (file_get_contents('test1.php');
?>thanks for any help.
Moderator: General Moderators
Code: Select all
<?php
$title = 'THIS BETTER WORK!';
?>
<html>
<head>
<title><?php echo $title; ?></title>
</head>
<body>
</body>
</html>Code: Select all
<?php
echo (file_get_contents('test1.php');
?>