I have a php file, for example abc.php file whose output will be an image(profile pic) and below it a set of links(navigation links). When i click any of those links, it displays the output of destination file(output of file mentioned in "href" attribute of anchor tag). But i want the contents of this file abc.php also to be shown. In short, whichever link i click, i want abc.php also to be shown along with the output of the destination file. ie.. my navigation column should stay constant.
I used php's include function but didn't get the desired results. include() can be used only if the file we want to include is continous with the file in which we want to include it. but my abc.php file is a complete php file(also contains html coding) and so cannot use it. can anyone help me? thanx in advance.