im new to php
i have a problem..
i wanna design a website that will have index.php as the Home page.
The index.php will include
header.php(the universal header)
menu.php(unuversal menu)
topics.php(topics of my websites like global warming,child labour etc..)
content.php(a welcome note for Home page.)
___________________________________________________
header.php
___________________________________________________
| menu.php
|
|
|
|
|
|
|
topics.php | content.php
|
|
|
|
|
|
|
_____________________________________________________
I wanna now focous on topic.php file.This page will hold the list of my website topics.
i wanna design my website in such a way that when any user click on any topic (suppose global warming )the
application will automatically include global_warming.php(which i have created earlier) in the index.php
page and show the content of global_warming.php file in place of content.php in a iframe.
and will do the same for other topics.
Thanks...