PDA

View Full Version : Two databases in one


jd2003
06-19-2004, 11:52 AM
Hello Everyone

Just one curiosity, I have this PHP script that will search a database in a .txt format.
The contents of the database is that of registered Cultivars.
I would like to break this database into two section but within the same txt file, one for registered and the other half for non registered, the reason for this is, is, one compliments the other.
Has anyone tried to create two database in one? if so could you please explain to me how.

litebearer
06-19-2004, 01:46 PM
A simple method would be by adding one extra field to the records: 0 in the field means NOT registered, 1 in the field means registered.

jd2003
06-19-2004, 02:19 PM
:thumbsup: Thank you very much, so simple, why did I think of that.