Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP alternatives?

Tags:

php

scripting

Are there alternatives to PHP that perform faster and have somewhat the same feature set (like support for common RDBMS, Curl, Regex, etc)?

What about coding websites in C? How does that work out? Is that platform independent and works on each server?

like image 416
Tower Avatar asked Jan 05 '10 17:01

Tower


People also ask

Is there any alternative for PHP?

Some of the popular alternatives to PHP include Java, Python, and Go. Here are the salient features of these languages.

Is Python a good alternative to PHP?

Python is better than PHP in long term project. PHP has low learning curve, it is easy to get started with PHP. Compare to PHP Python has lower number of Frameworks. Popular ones are DJango, Flask.

What is alternative of PHP for Web development?

One of the best PHP alternatives is Python. It is a versatile language that is often used in scientific computing and data analysis. It's considered an easy-to-learn language and also supports multiple programming paradigms. This makes Python a good choice for beginners that are just starting out with coding.


1 Answers

Your question is broad.

  • PHP can be made fast and scalable (Flickr, Facebook and more sites run PHP)

  • Somewhat similar in purpose are webframeworks like Ruby on Rails, Django, Lift, ... (these can scale, too, see e.g. Twitter)

  • A short intro on CGI in C: http://www.cs.tut.fi/~jkorpela/forms/cgic.html

like image 58
miku Avatar answered Sep 21 '22 06:09

miku