hi, <br /> <br />if anybody have the same probs with submitting the score, i found the problem. <br /> <br />on my server php4.3.9 the function "mysql_insert_id()" doesn`t wort. <br /> <br />so i paste this to the script under the line: <br /> <br />// $lastid = mysql_insert_id(); <br />---- <br />$query2 = "SELECT sessionid FROM {$config['tbprefix']}gamesessions ORDER BY sessionid DESC LIMIT 1"; <br />$res1 = $dbh -> do_query($query2,__LINE__,__FILE__); <br />$row1 = $dbh -> fetch_array($res1); <br />$lastid = $row1["sessionid"]; <br />--- <br /> <br />i also have some problems with permission handling, but thats because i use an own session handling. think u dont get this problem if u use the regular way. <br /> <br />ciao <br />tydu