![]() |
|
How to make a Web App? - Printable Version +- Southperry.net (https://www.southperry.net) +-- Forum: Social (https://www.southperry.net/forumdisplay.php?fid=14) +--- Forum: The Speakeasy (https://www.southperry.net/forumdisplay.php?fid=54) +--- Thread: How to make a Web App? (/showthread.php?tid=68623) |
How to make a Web App? - Corn - 2013-12-18 This is probabbbblly the wrong forum to put this in, but I'm not sure where else could it fit. So. I want to take a step up from writing crappy Java apps to the slightly more acceptable coding Web apps. Only thing is...how? I have no idea how to code in HTML, CSS, Javascript, PHP, or hell, what those things even are. I literally also have no idea on how to register a domain, grab a server, and to put stuff onto the server. I'm going in this pretty much completely blind, except, I know how to code in, like, Java/Python/C++/Ocaml. I've Googled around a bit, and this seems quite promising, but are there any better guides out there? Thanks. How to make a Web App? - Untradeable - 2013-12-18 If you know how to do any other language, learning Javascript/PHP won't be that hard. There's just a few weird things that you have to learn. As for HTML/CSS, Those aern't coding languages, they're markup/style languages so you'll just have to grab a book and dive in, That's the easiest way i'd think. How to make a Web App? - DeanNim - 2013-12-21 why web apps though.... steer away from those as far as possible. How to make a Web App? - Haishiro - 2013-12-21 Depends what kind of web app you want to make. You can make a self-contained Java applet as a web app without having to muck around with HTML/CSS. I tend to dislike Java web apps though (mainly due to the somewhat obsolete reputation for being high risk to security). HTML/CSS are simple enough that you can jump right into any reference and just start. W3C is a good starting place but they do have some errors and bad suggestions, so try not to rely on them too much. PHP gives your web app server functionality. http://www.php.net already defines all the functions and usually has great examples for you to copy. Javascript is also fairly simple compared to Java. I personally recommend using the jQuery library. How to make a Web App? - Russt - 2013-12-26 Avoid PHP. http://me.veekun.com/blog/2012/04/09/php-a-fractal-of-bad-design/ Why do you want to write a webapp? How to make a Web App? - Dusk - 2013-12-27 Learn JavaScript, it's awesome and essential for web development. Don't touch PHP. ASP.Net can be worth looking into if you want to write code in C# (very similar to Java) and provide a Web API to control it. |