To mention that in the database, you need to add columns to the qtrack table in order to get it to work; it should be made to look somethign like this: mysql> desc qtrack; +-----------+-------------+------+-----+-------------+-------+ | Field | Type | Null | Key | Default | Extra | +-----------+-------------+------+-----+-------------+-------+ | qwords | varchar(63) | | | | | | qtime | int(11) | | | 0 | | | found | int(11) | | | 0 | | | tag | varchar(10) | | | 0 | | | ipaddress | varchar(16) | | | notresolved | | +-----------+-------------+------+-----+-------------+-------+ 5 rows in set (0.00 sec) mysql> Which can be easily done with: alter table qtrack add ipaddress varchar(16) not null default "notresolved"; and alter table qtrack add tag varchar(10) not null default "0"; Sorry about that, Gary (-; ___________________________________________ If you want to unsubscribe send "unsubscribe general" to [EMAIL PROTECTED]
