Re: mysql not supporting php.

2002-06-03 Thread mos
At 01:50 AM 6/3/2002, you wrote: >"mysql support is not available to php on this server" > >This is the error I receive. MySQL is working fine, but I need to know >how get php working with sql. > >Also, does anyone know the command to list all the db's? thanks. > >Dave Dave, Switch to PH

Re: mysql not supporting php.

2002-06-03 Thread Terrence Cox
It sounds as if you didn't compile in mysql support with you php executable. You can check this using the phpinfo() function. If you are using the cgi only, try something like... 'php -q -i | grep configure' This will show you all the configuration options you selected when compiling/installi

Re: mysql not supporting php.

2002-06-03 Thread Markus Lervik
On Monday 03 Jun 2002 9:50 am, David Grant wrote: > "mysql support is not available to php on this server" > > This is the error I receive. MySQL is working fine, but I need to know > how get php working with sql. PHP isn't compiled with MySQL support. Recompile php and add --with-mysql to the co

RE: mysql not supporting php.

2002-06-02 Thread Neville Lewis
The follow lines will ->list DBs ->allow to select one ->list tables under the selected DB mysql> show databases; mysql> use mysql> show tables; hope this helped! -Original Message- From: David Grant [mailto:[EMAIL PROTECTED]] Sent: Monday, June 03, 2002 12:21 PM To: My SQL M

Re: mysql not supporting php.

2002-06-02 Thread Ashley M. Kirchner
David Grant wrote: > This is the error I receive. MySQL is working fine, but I need to know > how get php working with sql. This means your PHP was not compiled with MySQL support. Recompile PHP. > Also, does anyone know the command to list all the db's? thanks. show databases; --