If you want to add a Filename string as part of the URL query maybe you should construct it like:
"http://www.domain.com/Process.php/?page=page-id-5-show-1.php"
That would allow the Process.php script to access the page name with a construct something like $page = $_GET['page'];
You could do whatever you want to with this data from that point.