Here is the LSL:
default
{
state_entry()
{
llSetText( "Touch to open your free account", < 1,1,1>, 1 );
}
touch_start(integer total_number)
{
string name;
string password;
name = llDetectedName(0);
password = llDetectedKey(0);
llSay( 0, "Your Login name is your Second Life Name, " + name +". Your password is " + password + ". Please copy your password from History and visit www.xxxxxxx.com where you can then change your password to something you remember."
;llHTTPRequest( "http://www.xxxxxxxxxx.com/xxxxxxxxx.php", [HTTP_METHOD,"POST",HTTP_MIMETYPE,"application/x-www-form-urlencoded"], "name, password"
;}
}
Here is the PHP:
<?php
$host="xxxxxxxxx.secureserver.net";
$user="xxxxxxxxx";
$pwd="xxxxxxxxx";
$sys_dbname="xxxxxxxxxx";
$password = $_POST[password];
$name = $_POST[name];
$link = mysql_connect($host, $user, $pwd) or die('MySQL Error');
mysql_select_db($sys_dbname, $link) or die('MySQL Error');
$query = "INSERT INTO 'register' ('password', 'Second_Life_Name') VALUES ('".$password."', '".$name."')";
mysql_query($query) or die(mysql_error());
mysql_close();
?>
Any help/comments would be appreciated

Thanks,
Everett Streeter