Hi
the linux_id is your connection to the database..
Look at the $sql variable in the example below
$sql=mysql_connect("localhost","webmin","*****") or die("Unable to connect to SQL server");
$DB="webadmin2";
mysql_select_db($DB,$sql) or die("Unable to select database");
$query = 'insert into TEST (ID,NAME) values(NULL,"Great")';
if ( ! mysql_db_query($DB,$query,$sql) )
{
/* Error handling
}
$insert_id = mysql_insert_id($sql);