Re: How can I connect master page to another page ?
Posted: Tue Jan 24, 2012 3:44 am
Can you explain what you mean by "connect"?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
<p>Another page.</p>Code: Select all
<html>
<body>
<h1>Master Page</h1>
<?php
include 'another_page.php';
?>
</body>
</html>