kwandoa Posted April 19, 2013 Share Posted April 19, 2013 I guess you've been asked this many times...but amuse us this one time. In your opinion, if you met a beginner web developer and had to advise him/her on what Web Developing language to begin with, keeping in mind the Framework applications that are out there. Would you recommend PHP or Ruby? Link to comment Share on other sites More sharing options...
Larry Posted April 19, 2013 Share Posted April 19, 2013 I would recommend PHP, without a doubt. Link to comment Share on other sites More sharing options...
erikvail Posted December 5, 2017 Share Posted December 5, 2017 I would recommend reading the following article of Alan Storm regarding the difference between Php and Python Some of the these aproach problems were overcome by introducing the namespace concept in php. These differences are due to the development of the PHP language which was not a designed from start but evolved naturaly. An example with namespaces in php showing how we can solve nowadays these fine pecularities <?php namespace Earth; #File: hello_earth.php function hello() { echo "Hello Earth! \n"; } hello(); ?> <?php namespace Mars; #File: hello_mars.php function hello() { echo "Hello Mars! Mind the germs. \n"; } hello(); ?> <?php namespace Solar; include 'hello_earth.php'; include 'hello_mars.php'; echo "Starting up a solar system \n"; /* Usage with use use Earth; use Mars; Earth\hello(); Mars\hello(); */ \Earth\hello(); \Mars\hello(); ?> Link to comment Share on other sites More sharing options...
erikvail Posted December 5, 2017 Share Posted December 5, 2017 Though my prev. post targets python it can be true for ruby also. Link to comment Share on other sites More sharing options...
Larry Posted December 5, 2017 Share Posted December 5, 2017 Agreed. Thanks for sharing! Link to comment Share on other sites More sharing options...
Recommended Posts