The other thing to remember about a lot of other languages / Studios is that they are licensed per year and not a one off charge
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuNETWEBGET$("websitehome.co.uk", "/poststats.php?n=" + YourName$ + "&s=" + Distance, 80, 4096)
<?php
$nam = $_GET["n"];
$sco = $_GET["s"];
$con = mysql_connect("YourDB.co.uk","YourDBname","YourPassword");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("YourDBname", $con);
$result = mysql_query( "INSERT INTO HIGHSCORE (Name, Score)
VALUES ( '" . $nam . "', '" . $sco . "' ) " );
mysql_close($con);
?>