userid != $user->id) { fail("We have no record of that computer"); } return $host; } db_init(); $user = get_logged_in_user(); page_head("Delete record of computer"); $hostid = get_int("hostid"); $host = get_host($hostid, $user); if (host_nresults($host)==0) { mysql_query("delete from host where id=$hostid"); } else { fail("existing results"); } echo " Host deleted.

Return to list of your computers "; page_tail(); ?>