Wirehead Studios

Wirehead Modifications => General Development ('Laced Neptune') => Topic started by: dna on 2003-02-05, 16:58



Title: thebadplace (is open)
Post by: dna on 2003-02-05, 16:58

thebadplace (http://www.thebadplace.us)
I spent a little time over the past few weeks coming up with this - a successor to Deja-Review (http://www.deja-review.com).  As of yet, I haven't had time to upload the content from Deja yet, but I should get around to it this weekend.  It's not really ready to open to the general public, for lack of content, but I thought I would post it here to see if anybody was interested.
If anybody wants, I will continue accepting submissions to review and linkage for download to distribute to the community.
Just be kind to me; it's my first attempt at web building, so it's not near as fancy as Deja was, lol, but it works.
At anyrate, I hope this is of some service to mappers.  If it's not, let me know what I can change.  If you have any suggestions, I would be happy to take them into consideration.  I'm already planning a much prettier V2 ;)


Title: Re: thebadplace
Post by: Tabun on 2003-02-05, 18:09
If you need/want assistance on either html or just pics, i may be able to help out - provided i can pull myself away from the models for a bit ;]


Title: Re: thebadplace
Post by: dna on 2003-02-05, 18:58
Thanks for the offer Tabun.  Like I said, prettier V2 is in the planning stages right now.  Mostly, I just need to get off my ass and learn how to use the tools that I have.  Adobe rules, but geez...  you just about need a college degree to use em right.  Oh well...


Title: Re: thebadplace
Post by: ReBoOt on 2003-02-05, 22:07
And i can write some .ASP script if ya want.


Title: Re: thebadplace
Post by: dna on 2003-02-05, 22:45
ReBoot: I'd say thanks, but I have no idea what that is, heh. :P


Title: Re: thebadplace
Post by: ReBoOt on 2003-02-06, 20:38
eh.. ok ;) well asp is simply one way of doing dynamic webpages, eg i could make a map submission page or list all maps in database with their comments / review...deja-review is a dynamic webpage so is this message board :) other script languages: PHP, coldfusion, jsp...


Title: Re: thebadplace
Post by: dna on 2003-02-06, 21:24
Would MySQL work for that as well?


Title: Re: thebadplace
Post by: ReBoOt on 2003-02-06, 21:36
sure mysql works fine with asp tho i whould recommend PHP when using mysql.


Title: Re: thebadplace
Post by: dna on 2003-02-06, 22:55
Hmm.  Well, I should be able to make a mySQL database with myphpadmin (or was it phpmyadmin, lol), but I will still need a script for the page.  How do you do that?  Just insert the script on the page and then it takes care of everything?  That would be nice...


Title: Re: thebadplace
Post by: ReBoOt on 2003-02-07, 01:11
well it's not really that easy cuz you need to know programming.

eg. this is a vbscript that writes certain values from a form to a database:

Code:
  strSQL = "SELECT * FROM tblmessage ORDER BY ID"
 
  Set objRS = Server.CreateObject("ADODB.Recordset")
  objRS.Open strSQL,objConn,,adLockOptimistic
 
  objRS.AddNew
  objRS("strfrom") = Request.Form("from")
  objRS("strto") = Request.Form("to")
  objRS("strsubject") = Request.Form("subject")
  objRS("strmessage") = strText
  objRS("strdatum") = Date
  If Not tempid = "" Then
  objRS("strruserid") = tempid
  Else
  objRS("strruserid") = Request.Form("id")
  objRS("strdatum") = Date
  End IF
  objRS.Update
  objRS.Close
  Set objRS = Nothing


*note for some reason my tab's ain't working..
there are plenty scripting tutorials on the net, search for them and learn :)


Title: Re: thebadplace
Post by: ROADKILL on 2003-02-07, 01:40
:rolleyes: cool dna!! I took a look around at your new sight.
 B) can't wait to fill it up.
ROADKILL


Title: Re: thebadplace
Post by: Lilazzkicker on 2003-02-22, 01:32
Whats the status on the new site btw? I will enjoy the work you put into it.