|
Posted by lorento on 06/03/06 05:25
Bob Sanderson wrote:
> I have created a MySQL database for my company which is accessed by PHP
> pages. I would like to permit some users to edit the records but allow
> others read-only access.
> However, I don't want to have to enter a password
> every time I want to edit a record. Is there a way to use our network login
> to do this? If not, what is the easiest way to accomplish this? The
> database is running on our server and is not accessible via the net.
Make a different landing page for each user.
E.g:
if user permitted to edit records, landing to:
http://intranet/page1.php
if user read only, landing to: http://intranet/page2.php
>From the server side, you can make a settings,
page1.php, only can be accessed from computer1, computer2
page2.php, only can be accessed from computer3, computer4
like that. Hope it will help you.
thanks,
Lorento
--
http://www.mastervb.net
http://www.padbuilder.com
http://www.immersivelounge.com
[Back to original message]
|