Page 1 of 1

looking for multi-categories CMS

Posted: Tue Sep 25, 2007 10:40 am
by spamyboy
I'm trying for more than 10 days to learn how to add/edit/list multi categories object's, for e.x. articles, I failed.
Could some one give me link to most basic CMS that has multi-categories articles ? (pleas don't sugest wordpress blog, because code is to "messy" for me there).
Thank you.

All I need is basicle to learn create a system that could menage to create an article about movie where could I add multiple actors to one movie, so that basicly I could easly edit them with checkboxes (from admin cp, add/edit/remove) and also that could I add that article by it self to multiple categories, just give me example please of something +/- like it. (example == link to other cms or smth, I am not asking to write a code).

Posted: Tue Sep 25, 2007 11:52 am
by Christopher

Code: Select all

CREATE TABLE movie (
  id INT,
  title VARCHAR(255)
)

CREATE TABLE actor (
  id INT,
  name VARCHAR(255)
)

CREATE TABLE role (
  movie_id INT,
  actor_id INT
)

Posted: Tue Sep 25, 2007 12:53 pm
by spamyboy
I know this part, I allready learned the structure, of so called (well forgot...), but the problems that I', having is how to add/edit articles when they have multiple categoeries and so on. using check boxes or smth else.

Posted: Wed Sep 26, 2007 12:21 am
by wei
use <select multiple="multiple"><option ...> ... </select>

add a quick search box above it to narrow down the options as the user types some letters (while keeping the already selected options).

Posted: Wed Sep 26, 2007 1:57 pm
by spamyboy
example pleas.

Posted: Sun Sep 30, 2007 12:37 pm
by spamyboy
Still looking.

Posted: Sun Sep 30, 2007 1:13 pm
by superdezign
Write something, and we'll try to help guide you through it.