Thanks for all the help I have received - totally appreciated. I am able to send valued from SL to PHP on my webserver and get it printed back in SL. I am also able to store the data on MqSQL tables now as well. What I am stuck on is actually listing the data on a webpage. Here is the code given from an example, but it only draws the table (actual row data is nonexsistent) what is wrong here???
<?php
/* Start of PHP3 Script */
/* Data of SQL-server */
$server= "216.247.255.141"; /* Address of 1&1 database server */
$user= "user"; /* Database username */
$password= ".........."; /* Database Password */
$database= "sk..........."; /* name of database */
$table= "o......."; /* Name of table, you can select that */
MYSQL_CONNECT($server, $user, $password) or die ( "<H3>Server unreachable</H3>"

;
MYSQL_SELECT_DB($database) or die ( "<H3>Database non existent</H3>"

;
$result=MYSQL_QUERY( "SELECT * FROM $table order by name"

;
/* Output data into a HTMl table */
echo "<table border=\"1\" align=center width=\"50%\">";
echo "<tr>";
echo "<div color=\"#ffff00\">";
while ($field=@mysql_fetch_field($result)) {
echo "<th>$field->owner</A></th>";
}
echo "</font></tr>";
while ($row=@mysql_fetch_row($result)) {
echo "<tr>";
for($i=0; $i<@mysql_num_field($result); $i++) {
echo "<td align=center>$row[$i]</td>";
}//for
echo "</tr>\n";
}//while
echo "</div></table><BR><BR>";
/* Close SQL-connection */
MYSQL_CLOSE();
?>
Nathan