• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How would I make this? ( Webpage program thingy. )

speg

Diamond Member
Hey, heres the thing I recently compiled a list of different things for a card game. ( WA!, kinda like Magic but its wrestling 😀! ) Anyway what I was gonna do is make an app that would sort the cards by different attributes ( ie. You click cost, it sorts by cost, etc ) But then I thought I could build a webpage to do this. Problem is a have very limited ( read: some halfass thrown together page ) in building web pages. I do however have some basic programming experience. So I ask you, how would I do this? I don't even know where to start! What would a use, JAVA? Let me know, thanks!
 
if you want it to work on webpages probably use java or some weird combination of javascript and html.. you could prob whip something out in VB if you dont care about having it web related..
 
You'll want to use java servlets...they are a mechanism for dynamic html generation using Java. Since it uses Java, not only can you generate HTML (or script, for that matter), but you can also do anything else you can do with Java--interface with databases like MySql, automatic email, etc...very cool and very easy. You will want to check out http://jakarta.apache.org for the Tomcat servlet engine and Jason Hunter's Oreilly book, "Java Servlet Programming." If you can't install stuff on your web pages server, you will be limited to script...since script executes entirely on the client side, I'd be inclined to say it isn't worth your time...servlets on the server side are waaaaaaaaaaaaaaaaaaay better.

Hope this helps,

spwango
 
Back
Top