Create A Forum With Fireworks?

by iamx
7 replies
Hey guys,

Does anybody know if its possible to create a forum in fireworks? I'm creating a website on fireworks. But I wanna create a forum were the visitor can put their info in. That way I can email them back with answers to their questions or what not.. I also Have dreamweaver but I'm not the best with dreamweaver thats why I rather do it on fireworks...
#create #fireworks #forum
  • Profile picture of the author Emma Blanke
    Why do you want to start from scratch, iamx?

    I'd suggest that you use pre-made forum scripts like phpBB or if you want to get fancy you can use vBulletin.

    Why to use pre-made forum scripts?

    1) Community. If you have any questions about the code you can always get help from experienced coders that are always willing to help.

    2) Flexibility. You can find tons of great plugins and themes. You don't need to code everything yourself (there is a LOT of work in forum coding, trust me)

    3) Outsourcing. Want to have some rapid changes on your forum? That's great, hire a programmer to do all the work for you. Hmm, but programmer will take more just because you are using a custom script and he is not familliar with this environment.

    I really recommend you to think twice before making the final decision!
    {{ DiscussionBoard.errors[2848224].message }}
  • Profile picture of the author aesoft
    Originally Posted by iamx View Post

    Hey guys,

    Does anybody know if its possible to create a forum in fireworks? I'm creating a website on fireworks. But I wanna create a forum were the visitor can put their info in. That way I can email them back with answers to their questions or what not.. I also Have dreamweaver but I'm not the best with dreamweaver thats why I rather do it on fireworks...
    Fireworks is used primarily to help with the design aspects of things, not necessarily the programming portion. You would still need to develop the back-end with Dreamweaver or another method.
    {{ DiscussionBoard.errors[2848397].message }}
  • Profile picture of the author phpbbxpert
    Neither Dreamweaver or Fireworks are very useful for this type of thing, eg. Forum, CMS....

    Those types of projects require high level programming skills and usually a team. And they will all be programming by hand in a text editor or with an IDE, not visual based software.

    It also requires a ton of time just to get something as powerful as a forum even close to a secure and release state.

    Your best bet is to do like mentioned earlier and mod an existing forum software to do what you want. Again, this requires programming skills (not Dreamweaver or Fireworks), granted Dreamweaver does have a code view, but still not the best tool for the job.
    {{ DiscussionBoard.errors[2851652].message }}
    • Profile picture of the author iamx
      I think the right term I'm looking for is creating a PHP forum.. I want the visitor to be able to put his or her's contact info on my website. And for me to be able to reach them back by email. I think I would have to set-up a database to get this to work.. Can anyone point me to a correct youtube video or maybe the right info?
      {{ DiscussionBoard.errors[2852471].message }}
  • Profile picture of the author iamx
    This is a perfect example of the type of opt-in forum I NEED... >> Health Covers
    {{ DiscussionBoard.errors[2852555].message }}
  • Profile picture of the author caesargus
    Forum != form.

    I don't recall input fields being available within fireworks. But I haven't used fireworks in a few years, so maybe things have chanced since the version I was last familiar with.

    But if you want some rough HTML
    <form name="form" action="where_you_want_to_process_data.php" method="POST">
    <label>First name:</label><input type="text" name="fname" value="" />
    <input type="submit" value="submit" />
    </form>

    This should at least get you started. But if you already have dreamweaver, why can you just export the html from fireworks and just build the form in dreamweaver. It would actually be able to layout the form better, since it behaves more like a browser when in the wysiwyg mode, so you can tell if your design is spot on or not.
    {{ DiscussionBoard.errors[2853317].message }}
  • Profile picture of the author caesargus
    Oh and here's a related post:
    Adobe Forums: Can I make a 'Contact Form' in...

    I guess it's not possible within fireworks - you have to export it to Dreamweaver in order to create the actual form.
    {{ DiscussionBoard.errors[2853328].message }}

Trending Topics