Re: [PHP-DB] Confused

2003-10-05 Thread Michael Cupp, Jr.
new technology. M -Original Message- From: "Robin Kopetzky" <[EMAIL PROTECTED]> Date: Sun, 5 Oct 2003 13:56:10 To:<[EMAIL PROTECTED]> Subject: RE: [PHP-DB] Confused To answer your question, yes, I'm using mysql. No, I did not intended for everyone to go thermon

RE: [PHP-DB] Confused

2003-10-05 Thread Robin Kopetzky
To answer your question, yes, I'm using mysql. No, I did not intended for everyone to go thermonuclear over this question. Next time, I'll go elsewhere since some one got P.O.'d about my posting twice. Sparky -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.ph

Re: [PHP-DB] Confused

2003-10-05 Thread mike
> As long as they're relevant. I was just wondering how relevant to php or MySql this nine message thread about how relevent the original post was...is? Mike -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] Confused

2003-10-05 Thread Jason Wong
On Monday 06 October 2003 00:24, Wang Feng wrote: > Note, he post the message to the [EMAIL PROTECTED] rather than > [EMAIL PROTECTED] Yes that's a bit better than posting on [EMAIL PROTECTED] But the point is that php-db is for questions about using various DBs *with* PHP. The question being

Re: [PHP-DB] Confused

2003-10-05 Thread Wang Feng
I assume you're using MySQL since L.A.M.P seems very popular. The following command should work anyway: GRANT permission ON tablename TO [EMAIL PROTECTED] IDENTIFIED BY password You can list as many permission as needed, separated by commas. cheers, feng - Original Message - From: "

Re: [PHP-DB] Confused

2003-10-05 Thread Wang Feng
Jason, > There are good reasons for having different lists for different subjects. Note, he post the message to the [EMAIL PROTECTED] rather than [EMAIL PROTECTED] There's nothing wrong to ask questions @ php-DB. :-) -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP-DB] Confused

2003-10-05 Thread Jason Wong
On Monday 06 October 2003 00:12, Wang Feng wrote: > how do you know he's using MySQL? OK, sorry I made an assumption. But whatever, he should be asking on the mailing list of whatever DBMS he is using. > I think some php people would like to answer this question since it makes > the community s

Re: [PHP-DB] Confused

2003-10-05 Thread Wang Feng
er 06, 2003 2:07 AM Subject: Re: [PHP-DB] Confused > On Sunday 05 October 2003 23:44, Robin Kopetzky wrote: > > I need to setup a user, 'commerce' with a password, that can be accessed > > from any web server in our farm 'blackmesa-isp.net'. What "GRANT&qu

Re: [PHP-DB] Confused

2003-10-05 Thread Martin Marques
El Dom 05 Oct 2003 13:07, Jason Wong escribió: > On Sunday 05 October 2003 23:44, Robin Kopetzky wrote: > > I need to setup a user, 'commerce' with a password, that can be accessed > > from any web server in our farm 'blackmesa-isp.net'. What "GRANT" > > statement do I need to make this work? I've

Re: [PHP-DB] Confused

2003-10-05 Thread Martin Marques
El Dom 05 Oct 2003 12:44, Robin Kopetzky escribió: > I need to setup a user, 'commerce' with a password, that can be accessed > from any web server in our farm 'blackmesa-isp.net'. What "GRANT" statement > do I need to make this work? I've tried a bunch of the examples in the > manual and can't get

Re: [PHP-DB] Confused

2003-10-05 Thread Jason Wong
On Sunday 05 October 2003 23:44, Robin Kopetzky wrote: > I need to setup a user, 'commerce' with a password, that can be accessed > from any web server in our farm 'blackmesa-isp.net'. What "GRANT" statement > do I need to make this work? I've tried a bunch of the examples in the > manual and can't

Re: [PHP-DB] Confused

2002-09-23 Thread Jeffrey_N_Dyke
if i'm reading right, you could use a join to get all of that info. select users.group_id, user_id, user_name, groups.group_name from users inner join groups on (groups.group_id = users.group_id) group by users.group_id parens not needed, it just makes it more legible. that should give you an