Do you know phpMyAdmin? http://www.phpwizard.net/projects/phpMyAdmin/
On the other hand you can access a mysql database with MS/Access using MyODBC (http://www.mysql.com/downloads/api-myodbc.html) directly
You can create EXCEL Files with the content of a database
<?php
Header("Content-Type: application/vnd.ms-excel");
mysql_connect("localhost", "", "")
or print ">>> MySQL-Error: ".mysql_errno()." -> ".mysql_error()."<br>\n";
mysql_select_db("YOURdatabase")
or print ">>> MySQL-Error: ".mysql_errno()." -> ".mysql_error()."<br>\n";
$query_text = "SELECT * FROM YOURtable";
$result = mysql_query($query_text);
$fieldcounts = mysql_num_fields($result);
for($i = 0; $i < $fieldcounts; $i++) {
$fieldtype = mysql_fetch_field($result, $i);
echo "$fieldtype->name [$fieldtype->type]\t";
}
echo "\n";
while ($myrow = mysql_fetch_array($result)) {
for($i = 0; $i < $fieldcounts; $i++) {
$fieldname = mysql_field_name($result, $i);
echo "$myrow[$fieldname]\t";
}
echo "\n";
}
?>
It depends on what you want to do ...