MySQL User restricted to one databases table?
#1

Is this possible like on FTP stuff?

Like on FTP you can setup a FTP user and restrict them to certain bits,
Is this possible with MySQL? Like restrict them to only be able to edit a certain table?

Or does anyone know any PHP tutorials,
So i can like learn to do this threw my website?
Reply
#2

You can set a users privileges both locally (for a database) or globally (for the whole thing), generally you can do it with a query through PHP, through shell if you have access, or through a client like PHPMyAdmin

Here's an example query which will set all permissions to a user on a local database
Code:
GRANT ALL PRIVILEGES ON 'DATABASE' . * TO 'USER'@'%'
Reply
#3

Quote:
Originally Posted by iLinx
You can set a users privileges both locally (for a database) or globally (for the whole thing), generally you can do it with a query through PHP, through shell if you have access, or through a client like PHPMyAdmin

Here's an example query which will set all permissions to a user on a local database
Code:
GRANT ALL PRIVILEGES ON 'DATABASE' . * TO 'USER'@'%'
Ok 1 question: How to create users :P
Reply
#4

I recommend you play around in PHPMyAdmin under the privileges tab.
Reply
#5

Wow, okay.
you got many posts. I mean lots. 1306 (19.788 per day)
that like wow. You make like 65 posts per day?
anyway ontopic
There is php+mysql tutorials all over ******* and ******
You might find something you need
Reply
#6

Quote:
Originally Posted by ineoncore
Wow, okay.
you got many posts. I mean lots. 1306 (19.788 per day)
that like wow. You make like 65 posts per day?
anyway ontopic
There is php+mysql tutorials all over ******* and ******
You might find something you need
19.788 per day. Not 65. How do I know? I am just great
Reply
#7

Quote:
Originally Posted by mamoru
Quote:
Originally Posted by ineoncore
Wow, okay.
you got many posts. I mean lots. 1306 (19.788 per day)
that like wow. You make like 65 posts per day?
anyway ontopic
There is php+mysql tutorials all over ******* and ******
You might find something you need
19.788 per day. Not 65. How do I know? I am just great
The "View Profile" button just spoke.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)