A simple message board?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • delisonews@yahoo.com

    #1

    A simple message board?

    I'm looking for a simple, filesystem-based message board.
    (No MySQL!) Something that I could include easily in my code:

    include '../inc/messageboard.ph p';


    .... so that the board shows up at the bottom of every PHP
    page. The board should have just the basic features, like:

    - posting capability
    - last 10 messages shown
    - links on the bottom for messages 11-20, 21-30 etc.


    Thanks.

  • Geoff Berrow

    #2
    Re: A simple message board?

    I noticed that Message-ID:
    <1116157017.410 625.105880@g49g 2000cwa.googleg roups.com> from
    delisonews@yaho o.com contained the following:
    [color=blue]
    >I'm looking for a simple, filesystem-based message board.
    >(No MySQL!) Something that I could include easily in my code:
    >
    > include '../inc/messageboard.ph p';
    >
    >
    >... so that the board shows up at the bottom of every PHP
    >page. The board should have just the basic features, like:
    >
    >- posting capability
    >- last 10 messages shown
    >- links on the bottom for messages 11-20, 21-30 etc.
    >[/color]

    If you want something that exactly meets your requirements the best
    thing to do is to learn how to code it.

    Here is a very simple guestbook that you may be able to base it on.



    code:

    --
    Geoff Berrow (put thecat out to email)
    It's only Usenet, no one dies.
    My opinions, not the committee's, mine.
    Simple RFDs http://www.ckdog.co.uk/rfdmaker/

    Comment

    • steve

      #3
      Re: Re: A simple message board?

      "Geoff Berrow1" wrote:[color=blue]
      > I noticed that Message-ID:
      > <1116157017.410 625.105880@g49g 2000cwa.googleg roups.com> from
      > delisonews@yaho o.com contained the following:
      >[color=green]
      > >I'm looking for a simple, filesystem-based message board.
      > >(No MySQL!) Something that I could include easily in my code:
      > >[/color]
      > &nbsp;> include '../inc/messageboard.ph p';[color=green]
      > >
      > >
      > >... so that the board shows up at the bottom of every PHP
      > >page. The board should have just the basic features, like:
      > >
      > >- posting capability
      > >- last 10 messages shown
      > >- links on the bottom for messages 11-20, 21-30 etc.
      > >[/color]
      >
      > If you want something that exactly meets your requirements the
      > best
      > thing to do is to learn how to code it.
      >
      > Here is a very simple guestbook that you may be able to base
      > it on.
      >
      > http://www.ckdog.co.uk/phpcourse/Lesson8/guestbook.php
      >
      > code:
      > http://www.ckdog.co.uk/phpcourse/Lesson8/guestbook.phps
      > --
      > Geoff Berrow (put thecat out to email)
      > It's only Usenet, no one dies.
      > My opinions, not the committee's, mine.
      > Simple RFDs http://www.ckdog.co.uk/rfdmaker/[/color]

      You can give it a try, but I don’t know of a ’simple’ message board.
      IMHO as soon as you develop it, you need 10 more features, and then
      after spending a couple of months, you would trash it for a real
      db-based message board.

      May I make a recommendation: look at phpbb, look at all the features,
      and make sure you would not need all those features in the future. A
      simple exercise but may save you days/months of work.

      --
      Posted using the http://www.dbforumz.com interface, at author's request
      Articles individually checked for conformance to usenet standards
      Topic URL: http://www.dbforumz.com/PHP-simple-m...ict224256.html
      Visit Topic URL to contact author (reg. req'd). Report abuse: http://www.dbforumz.com/eform.php?p=773030

      Comment

      Working...