not at all.
you're not being the slightest bit annoying, glad to be of service.
within test.php3 do this:
<?
echo $dbid;
?>
So an example of using this value to query a DB would be:
<?
if($dbid)
{
$conn = mysql_connect("server ady","user","pass");
$result = mysql_db_query("dbname","SELECT * FROM tblname WHERE id = ".$dbid,$conn);
if(mysql_num_rows($result) > 0)
{
while($rows = mysql_fetch_array($result))
{
echo $rows["column_name"]."<br>";
}
}
}
else
{
echo "No valid ID passed";
}
?>
If you need help in the future, just PM me.
cheers.