I m not sure if thats right section, but I m pretty sure it's done with PHP. So the question is, how can I change a conetent inside a division without navigation to new page. For instance I have 4 division. Header, links, content, footer. Now if i click some link on links division then the content division would change its content, but all the other pages remain same and the page URL would also stay the same. I know it could be done with
<php include('page.php') ?>
but this would still expect me to open a new page. I hope I didnt express myself too messy.
<html>
<head>
</head>
<body>
<div id="header">
<div id="navigation>
<a href="TriggerContentChange.php">Link</a>
</div>
</div>
<div id="content">
<!-- I need this division to change content when I click on link, but the page has to remain the same -->
</div>
</div id="footer">
</div>
</body>
</html>
Regards,
Martin