What is the best software programming language equivalent to PHP?
Looking for a programming language that is equivalent to PHP.
I'd like if it was Object Oriented.
Yeah but I'm looking for on to make software.
PHP was designed to have syntax very similar to C++. C++ can be written in an object-oriented way, or not, depending on which you think will be easier. Maybe you should try that.
Learn it here:
http://www.cprogramming.com/tutorial.html#c++tutorial
… and get a good free IDE for it here:
http://www.bloodshed.net/devcpp.html
PHP is an object oriented programming language. While there are others with similar capabilities, none will be as much like PHP as PHP is itself.
Update in response to additional information: Since PHP is a programming language, it can be used to make software.
References :
PHP was designed to have syntax very similar to C++. C++ can be written in an object-oriented way, or not, depending on which you think will be easier. Maybe you should try that.
Learn it here:
http://www.cprogramming.com/tutorial.html#c++tutorial
… and get a good free IDE for it here:
http://www.bloodshed.net/devcpp.html
References :
C++
References :
PHP is a server-side scripting language. If you are looking for another language to perform the same functionality, JavaServer Pages (JSP) or Java servlets is one possibility.
References :