Here's what I'd like to do... I have created a simple table on my mySQL server with the following query:
Code: Select all
CREATE TABLE test_table (
id INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
typeid2 INTEGER UNSIGNED NULL,
nametext TEXT NULL,
linktext TEXT NULL,
PRIMARY KEY(id)
);What I can't figure out how to do is how to add info to the DB and then read them later seperately (this might be a bit easier, since I've got a fixed number of 4 rows).
Could anyone please give me an example code that would accomplish the tasks that I want?
Thanks, any help would be greatly appreciated.