kwandoa 0 Posted April 19, 2013 Report 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? Quote Link to post Share on other sites
Larry 428 Posted April 19, 2013 Report Share Posted April 19, 2013 I would recommend PHP, without a doubt. Quote Link to post Share on other sites
erikvail 0 Posted December 5, 2017 Report 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(); ?> Quote Link to post Share on other sites
erikvail 0 Posted December 5, 2017 Report Share Posted December 5, 2017 Though my prev. post targets python it can be true for ruby also. Quote Link to post Share on other sites
Larry 428 Posted December 5, 2017 Report Share Posted December 5, 2017 Agreed. Thanks for sharing! Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.