Jobs search - Free Ecards - Deaf Topics - Adult ADHD - Jigsaw Puzzles

PDA

View Full Version : Which language is required to set up a web application?


arnoldsmithh
Feb 23rd 2009, 3:45 am
Which language is required to set up a web application?

i saw that most of the facebook applications are developed on php so i also want to create a social networking application so i wanna know which language is suitable for social networking application PHP or DOT NET.

f

harrisunderwork
Feb 23rd 2009, 3:46 am
PHP rocks.

ActiveFrost
Feb 23rd 2009, 3:51 am
Required ? I'm sure that someone can create a social networking site even with JavaScript ( only ) .. The other question is - how easy it will be ? :rolleyes:
Anyway, PHP is the right /tool/ to look at .. Pretty easy and powerful language ( if you know what you are doing ) !

innovatewebs
Feb 23rd 2009, 4:37 am
PHP is best for this kind of application following benefits of PHP
1) Easy to develope.
2) Cheap hosting
3) Cheap programmer available (cost)
4) easy to handle
5) many open source script available (Free)
6) paid script available just install and run your social networking site.

Regards
InnovateWebs
"Committed To Quality "

w0tan
Feb 24th 2009, 1:00 am
Facebook applications are written mostly in PHP, but facebook itself is also written in PHP.

They have a huge farm of servers running memcached to distribute the load, it's pretty neat. If anyone is interested, here's a good summary (http://www.facebook.com/note.php?note_id=39391378919) of what they do to scale with PHP.

arnoldsmithh
Feb 24th 2009, 4:20 am
thanks for sharing such a nice informations.

arnoldsmithh
Feb 24th 2009, 4:21 am
PHP rocks.

i know mostly facebook apps are developed on PHP but how?

unlimitedmoviez
Feb 25th 2009, 11:44 am
PHP is best for this kind of application following benefits of PHP
1) Easy to develope.
2) Cheap hosting
3) Cheap programmer available (cost)
4) easy to handle
5) many open source script available (Free)
6) paid script available just install and run your social networking site.

Regards
InnovateWebs
"Committed To Quality "


that's all true and really php have good stuff

risoknop
Feb 25th 2009, 12:39 pm
Well, any server-side language will do: PHP, .NET, Ruby, Java etc...

One recommendation: no matter what language you use, be sure to choose some quality framework (MVC preferably). It will help you maintain your application in the future and provide you with powerful solutions out of box.

JavaScript is used to enhance websites client-side (it runs inside your web browser). It makes your websites more user friendly and more attractive (AJAX, numerous form enhancements, auto-complete and some other interesting stuff).

arnoldsmithh
Mar 3rd 2009, 3:22 am
Well, any server-side language will do: PHP, .NET, Ruby, Java etc...

One recommendation: no matter what language you use, be sure to choose some quality framework (MVC preferably). It will help you maintain your application in the future and provide you with powerful solutions out of box.

JavaScript is used to enhance websites client-side (it runs inside your web browser). It makes your websites more user friendly and more attractive (AJAX, numerous form enhancements, auto-complete and some other interesting stuff).

Thanks for the information.