in reply to Ideas to Create a wiki page using a script
- Learn how HTML, HTTP etc work, if you haven't already. (In particular, HTML forms)
- Figure out how your favourite library/framework abstracts it
- Ask the user for a page name. If the page does not exist, give him a blank text box to edit
- When the user submits, save the web page onto the server (into a file or a database)
- If the user wishes to edit an already-existing page, give him a text box with the page's content pre-filled
- Consider storing the previous revision(s) of the page when the user submits an edit
- Think about enhancing the syntax with a markup language such as Textile or Markdown.
And that's about it.