1. This website uses cookies. By continuing to use this website you are giving consent to cookies being used.
    For information on cookies and how you can disable them visit our Cookie Usage page.
    Dismiss Notice

PHP Please help anyone?

Discussion in 'Web Development' started by MatthewPhillips, Nov 6, 2008.

  1. MatthewPhillips

    MatthewPhillips New Member

    Hey every one, this is my first time on this forum but anyway I am looking for someone who could help me create a php script that would do the following (And if I possible I would love not to use MYSQL)

    I would like to make a page on my site that is called Announcements. On this page I would like to have all my companies’ announcements,

    But instead of having to add announcements myself I would like to have a login that would enable as many users I want the ability to add announcements by using a simple form

    You if are willing to help me out please let me know.
     
  2. ishkey

    ishkey Moderator, Logos, Sports Crests Staff Member Verified Member

    Try Google - there are programs written, somewhat like you want. Plus what you want is long in the programming.
     
  3. sunnee

    sunnee New Member

    Welcome, enjoy the site!
     
  4. scottlpool2003

    scottlpool2003 New Member

    If you have knowledge of PHP & SQL just make your own.

    Make a form with the fields you need

    Name
    Comment

    Make the form go to addcomment.php where it enters the data into the database

    INSERT INTO * comments
    id
    name
    comment

    and then simply select the comments from the database onto the page where you want it.

    If you don't have this knowledge, have a look for guestbook scripts ;) Take the add comment form out and take the show comments code out and put it where you want :)
     
  5. bmcoll3278

    bmcoll3278 New Member

    To do it with sql would take me about 20 minutes I could help you with that , But no sql means flatfile data and that is a pain. If you can use sql let me know I will be willing to help.