rma.eugene Posted June 10, 2010 Share Posted June 10, 2010 Hey all, Trying to setup a table to store a list of entry Id's a user could bookmark. Kinda new at this. Not sure how to do it. Right now I've got: CREATE TABLE FamilyBookmarks ( familyID int unsigned not null, entryId varchar(20) not null, date_created datetime, last_updated datetime, PRIMARY KEY(familyID, childId) ); thanks! Link to comment https://forums.phpfreaks.com/topic/204441-set-up-table-to-save-bookmarked-entries/ Share on other sites More sharing options...
thomashw Posted June 10, 2010 Share Posted June 10, 2010 If possible, try using phpmyadmin to setup your database. A lot of hosts that support MySQL databases will also have phpmyadmin preinstalled. It's a GUI, and is far easier, IMO. Link to comment https://forums.phpfreaks.com/topic/204441-set-up-table-to-save-bookmarked-entries/#findComment-1070577 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.