MySQL Web Access
----------------


1. Presentation

Most of time, your webhosting provider don't allow you to connect
directly to their mysql server. As a result you have to use a web interface
such as phpmyadmin instead of more convenient client such as mysql control
center.

MySQL Web Access is a drop-in replacement for libmysqlclient that use a
server-side php script to be able to use any client with your mysql
provider's server.

2. Installation

You need :
- a C compiler
- libcurl
- a dynamicaly compiled mysql client (very important !)

put index.php somewhere on your webspace

then run :
make
export LD_PRELOAD=./libmysqlclient_wa.so.1.0.0
export MYSQL_HOST=http://provider.com/wa/
mysql

