Really it's a very big question. But a starting point would be to
think about your data. You'd probably want an object to represent a
post. And an object to represent a thread. With a reference in the
post object to the thread that contains that post.
Then you'd think about the processing you want to apply to your data
types, and mapping that processing to URLs. Getting and sorting
threads by date created, perhaps? Getting all posts of a certain
thread, sorted by date?
Then think about how to present the results of that processing. You'd
probably want to present the data itself, along with a means to insert
new data (new threads/posts) i.e. forms embedded in the pages.
That would probably be your simplest starting point. Obviously you
could have all sorts of other things too, like a user registration and
management system etc.
On Jun 9, 9:13 pm,
joh...@easypublisher.com wrote: