looking for multi-categories CMS

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
User avatar
spamyboy
Forum Contributor
Posts: 266
Joined: Sun Nov 06, 2005 11:29 am
Location: Lithuania, vilnius

looking for multi-categories CMS

Post 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).
User avatar
Christopher
Site Administrator
Posts: 13596
Joined: Wed Aug 25, 2004 7:54 pm
Location: New York, NY, US

Post 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
)
(#10850)
User avatar
spamyboy
Forum Contributor
Posts: 266
Joined: Sun Nov 06, 2005 11:29 am
Location: Lithuania, vilnius

Post 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.
wei
Forum Contributor
Posts: 140
Joined: Wed Jul 12, 2006 12:18 am

Post 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).
User avatar
spamyboy
Forum Contributor
Posts: 266
Joined: Sun Nov 06, 2005 11:29 am
Location: Lithuania, vilnius

Post by spamyboy »

example pleas.
User avatar
spamyboy
Forum Contributor
Posts: 266
Joined: Sun Nov 06, 2005 11:29 am
Location: Lithuania, vilnius

Post by spamyboy »

Still looking.
User avatar
superdezign
DevNet Master
Posts: 4135
Joined: Sat Jan 20, 2007 11:06 pm

Post by superdezign »

Write something, and we'll try to help guide you through it.
Post Reply