Şurdaki örneği denedim. Ufak bi sorunu vardı PHP dosyasında ufak oynama yapınca çalıştı.
http://www.automateexcel.com/2005/02...rite_from_exc/

Son kullandığım PHP dosyası

<?php

$username="";
$password="";
$database="denemedb";
$dblocation="localhost";
$tablename="deneme";

//get the current time
$writetime = date("Y-m-d H:i:s"); 

//grab the variables from the query
$GetAuthor=$_GET["GetAuthor"];
$GetMessage=$_GET["GetMessage"];

//connect and select DB
mysql_connect($dblocation,$username,$password);
@mysql_select_db($database) or die( "HATA");

$query = "INSERT INTO $tablename VALUES ('','$writetime','$GetAuthor','$GetMessage')";

mysql_query($query) or die ("Hata");

mysql_close();

?>
Linkteki Excel dosyasını indirdikten sonra 'Post Comment' butonuna ilişkin makroda php dosyasının adresini düzenlerseniz çalışıyor.

Umarım işinize yarar.