In my application I require a customer to add a link to his web page. The link takes whoever clicks on it through a number of scripts to make sure things work properly.
Some of my customers hire some geeks that do not follow instructions and instead of putting the required link on the web page, they link directly to the final page. I use “forms” to pass the data I need and the browser stops, waiting for input, showing the .html or .php page.
Sample scenario: The viewer clicks on linkA.php which directs him to linkB.php, (not visible) from there to linkC.php (not visible) and from there to linkD.php. Now, linkD.php is waiting for some more input and the .php script name with an html form is displayed.
So, the hired geek thinks it’s simpler to directly link to linkD.php (he cannot see the links in between). Needless to say, that’s the end of a working system and the customer is very unhappy – having no clue that the fellow he hired and paid big bucks, messed things up.
Question: how do I prevent the .html and/or .php script names from showing up anywhere on the screen?
:rolleyes: