Dollars BBS | Technology

feed-icon

Main

News

Animation

Art

Comics

Films

Food

Games

Literature

Music

Personal

Sports

Technology

Random

SCHOOL ANIME GROUP HELPPPPPPPP (7)

1 Name: TheWanderingSamurai : 2015-11-04 19:00 ID:Quh7BRkg [Del]

Hello, my name is TheWanderingSamurai my school just got an anime club and i am developing a web site for it, i want to make it like this one were you need to enter using a password.I will try to add a user name i think it will be fun just think about it an underground website for a bunch of anime fans that like this type of things so can someone please give me a copy of dollars-bbs website code or tell me how to make a similar one? please and thanks for your time.

2 Name: spider : 2015-11-04 21:08 ID:jjg+NKm+ [Del]

DUDE THIS SOUNDS SO COOL! I wish my school had a anime club
(*`へ´*) 彡3
but i found this>> http://code.tutsplus.com/tutorials/how-to-create-a-phpmysql-powered-forum-from-scratch--net-10188

3 Name: Hiroki : 2015-11-05 00:33 ID:vzGOQQq1 [Del]

>>1 All the same let the prospective members get infos on your website.

4 Name: Anonymous : 2015-11-06 09:48 ID:ayWd75QB [Del]

You need to have a dynamic website. It can be done in PHP, something like this:




function DoWBM(){
var WBMVar = document.getElementById("WBMSite").value; //this grabs the variable (search terms) from the textbox
var NewURL = "https://web.archive.org/web/*/" + WBMVar; //this puts the site they typed into the wayback machines URL

var NewTabWBM = window.open(NewURL, "_blank"); //this opens a new tab with the URL. The _blank is a new tab, but if you name it something specific, their browser will change THAT tab each time. i can explain this more on skype
if (NewTabWBM){ //make sure the browser can allow it
NewTabWBM.focus(); //switches them to the new tab -- done!
}
else{
alert("Popup didnt work");
}
}














5 Name: TheWanderingSamurai : 2015-11-06 16:15 ID:Quh7BRkg [Del]

i guess i need to learn PHP

6 Name: Zac : 2015-11-07 04:34 ID:+W+wSWAa [Del]

Notepad++ is a good program for code it could take some time but I enjoy it

7 Name: Anonymous : 2015-11-08 05:16 ID:ayWd75QB [Del]

Sorry, it ate 80% of my code. If you really need it, post another reply letting me know.
You can do it with Javascript as well, but it isn't as secure, and your password is shown as plaintext under the source.