Hi Bunny,
At the bottom of this file is the syntax for your new index.htm or index.php3 file.
Recap:
Let's say people click your link. If they remove/delete the db_details.php3?server=1&lang=en&db=yourdbname portion from the URL, then voila...they see the very thing that you didn't want them to see...which is the left frame giving them access to your other files.
Solution: Give them their own folder, identical to yours. Exception: different name and different .htaccess password. Sounds as though you've done this...great.
I did forget to mention password protecting that phpMyAdmin directory...great idea. What I was suggesting regarding username and password was not access to the folder, but rather the database itself. Many servers are configured where you can have multiple users...each user having different permission levels (some can view only or edit only, but not delete). If you have this, by all means do it. It will save you many headaches in the future.
To prevent them from accessing the left menu overwrite the index.php3 file to this below. This will automatically forward them to where you want them to be...even if they remove the portion of the URL discussed above, they will be redirected immediately (in 00 seconds).
Hope this helps you!!!
Syntax: for index.php3
<head>
<title>Transferring</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta HTTP-EQUIV="refresh" CONTENT="00;
URL=http://www.yourdomain.com/updates/db_details.php3?server=1&lang=en&db=yourdbname/">
</head>
<body bgcolor="#FFFFFF" text="#666666">
</body>