[PHP-DB] Apache+PHP+MySQL installation at once - HOW?

2001-05-04 Thread Vojtech Dvorak
Hi, I want to install this great trio Apache+PHP+MySQL and don't want it install step by step, program by program. I remember, that I saw somewhere some prepared package for very fast and comfortable installation of these three at once. Don't you now where I can find it? Thanks Vojtech -- PHP

Re: [PHP-DB] bout mysql

2001-03-13 Thread Vojtech Dvorak
can i grant a user to access two database in mySQL? Yes just use multiple... GRANT PRIVILEGES ON (or database you want to grant) TO user@"%" IDENTIFIED BY 'user_pass' does mysql has function DECODE like oracle ? don't know sorry how can i know which table or database that user can

Re: [PHP-DB] Import database in access to mysql

2001-03-01 Thread Vojtech Dvorak
Yes u can... by using MyODBC from www.mysql.com Make ODBC connection to your database (via 32bit ODBC in control panel) and than you can export tables directly to MySQL database as loading data from MySQL. I forget web page where this was shown step by step, sorry... Vojtech - Original

Re: [PHP-DB] mysql access

2001-02-14 Thread Vojtech Dvorak
What about... GRANT ALL PRIVILEGES ON *.* TO user@"%" IDENTIFIED BY 'user_pass' WITH GRANT OPTION make also this for localhost... GRANT ALL PRIVILEGES ON *.* TO user@localhost IDENTIFIED BY 'user_pass' WITH GRANT OPTION By the way, RTFM ;-) Vojta hi all... can you tell me how can i grant