rooshvforum.network is a fully functional forum: you can search, register, post new threads etc...
Old accounts are inaccessible: register a new one, or recover it when possible. x


Coding Help - Anonymously Submitted Stories?
#1

Coding Help - Anonymously Submitted Stories?

Hey guys,

I'm writing this because I'm curious if anyone knows how to incorporate a script to allow users to anonymously post stories/reviews to have on a wall... similar to FML? Trying to create a site and I'm new to coding so I don't know how to go about doing this.

It would be something along the lines of an entry box

Name: Saul T. Nuts

(Text box)
So have the text here.

[Submit Button]

These submitted stories will then be put on a wall with an incorporated liking/disliking system (which I will be customizing). If anyone knows how to answer this personally or can direct me to somewhere with relevant information it would be greatly, greatly appreciated!!
Reply
#2

Coding Help - Anonymously Submitted Stories?

The only other ways I can describe this would be an online journal or the coding for a forum without sign in information and their posting redirected to a home page... not sure where to go from here and since there are so many advocates here for learning coding languages is there anyone that can give me a hint here!? ;P
Reply
#3

Coding Help - Anonymously Submitted Stories?

Quote: (07-09-2014 07:19 PM)TravellingSoldier Wrote:  

The only other ways I can describe this would be an online journal or the coding for a forum without sign in information and their posting redirected to a home page... not sure where to go from here and since there are so many advocates here for learning coding languages is there anyone that can give me a hint here!? ;P

I'm pretty limited in backend development, but I think I understand what you're wanting to do.

You probably want something like this

HTML5:

<form action="homepage.html" method="POST">
<fieldset>
<legend>Your story.</legend>
<label for="name">Name:</label>
<input type="text" name="name">
<label for="text" id="story">Write your story.</label>
<textarea name="text" id="" cols="30" rows="10"></textarea>
<input type="submit" value="Post Your Story">
</fieldset>
</form>

And then you'll need some backend JSON / AJAX or PHP to post the text to the page (or in this case the post will be posted to the homepage). It's a little compilated to get into here, but post over on stackoverflow and they can explain it better than I can.

Here's a jsfiddle for the HTML code: http://jsfiddle.net/xV7b4/
Reply
#4

Coding Help - Anonymously Submitted Stories?

You're likely to get better answers on a coding forum.

Founding Member of TEAM DOUBLE WRAPPED CONDOMS
Reply
#5

Coding Help - Anonymously Submitted Stories?

Thank you man that is what I was looking for!
Reply
#6

Coding Help - Anonymously Submitted Stories?

Yeah I didn't really think of it at the time, and I just found out about blackhatworld so I will probably go there from now on
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)