answersLogoWhite

0


Best Answer

Thankfully, there was no stupid competition to determine this outcome. Well it is better to concentrate on Good Coding Practices and various Software Development Models rather then to worry about who is the best and who is the worst

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Who is the best PHP programmer of all time?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why all programmer used the php?

It is easy for coding and useful for many categories of websites.


What is the best PHP programming book?

Here is a website with all kinds of PHP programming books:http://www.freeprogrammingbook.com/php.php


What statement causes a function to executed in PHP?

All usable statements in PHP can cause a function to be executed - however, that's not to say that every statement will execute a function. A statement is defined by the programmer, who it is ultimately the one responsible for including a function, more than one function, or no functions.


Why PHP is more secure?

All server scripting language speak about it self, why it is secured. Individual perceptions varies on secure ness of a one particular server scripting language. A programmer's focus is the areas of activities/actions he has to undertake as per the security specification for a particular scripting language to make it secured. It may be PHP,ASP or JSP.


What should I learn to be a good programmer?

C++ (Object oriented) JAVA SCRIPT IN MY OPENION GOOD PROGRAMMER HOW KNOW THAT HE ALWAYS NOT THE BEST ONE . BUT DON'T STOP BELIEVING OF SELF CONFIENT . THATS ALL


Does TCS use php?

All big companies work in PHP. It is a growing technology.....


What does a PHP 5 ChangeLog do?

PHP is a scripting language this is used for web development. The PHP 5 ChangeLog is log which lists all of the fixed bugs on PHP Version 5. This can be found on the PHP website as a point of reference.


How to Learn PHP Programming?

Learning PHP programming can open a whole new world of lucrative career opportunities. PHP is a server side script, and it is also an open source software; it can be used on different platforms like Unix, Linux and Windows. PHP is one of the easiest programming languages to master; being an expert in this programming language can help you be one of the most in- demand IT professionals in your area (and around the world – the possibilities are endless!) Aside from being easy to master, PHP also runs smoothly on most servers that are being used today, including IIS or Apache. Here are some tips to get you started on learning PHP programming. Step 1: Get your PHP programming jumpstarted: you first need to install Apache on the server, and then you can start the PHP installation. You can get a free downloadable version at www.php.net; this side offers simple instructions on how to go about the installation process. Check the specifications that are compatible with your individual system. Step 2: There are a number of free PHP tutorial websites that can help you in your quest to become a PHP programming master. The sites guide you through all the basic steps, and everything is simplified to help even those who are not that familiar with basic programming techniques. You can find the websites by typing “learn PHP programming” on to your search engine’s search button. Step 3: You can also borrow or buy books that also provide step-by-step procedures on learning PHP programming. Some of the books you should consider are W. Jason Gilmore’s “Beginning PHP and MySQL 5: From Novice to Professional”, and Janet Valade’s PHP & MySQL for Dummies”. Step 4: It would also be good to talk to an experienced programmer, and ask for tips on how to get started with your learning process. The programmer will also be able to answer your questions as you go along. Deciding to learn all about PHP programming is the first step towards a more fulfilling career. With the right attitude, patience and an open mind, you can master this programming language in no time at all.


What are the advantages of PHP over Java?

HTML - displays data. That's it. That's all it can and will ever do. as for PHP, I'll list a few things that it's capable of: -database interaction (add, modify, delete data. Alter database structures and more) -Output dynamic contents. (ie, do different things according to the time of day, number of time the user has logged in, number of files in a directory, entries in database, etc.). And it's not just text and numbers either. It can generated images, output PDF and more~ -string/text/date manipulation -error checks -sessions and cookies (where website remembers you for a period of time) -compressions and archives -Cryptography extensions -maths and MUCH, MUCH more.


Can HTML tags code and text be included in a php code?

Yep. We do it all the time. One way is to simply tell PHP that you want the tags echoed. Like so: <?php echo('<b>Hi</b> Nice to meet you!'); ?> Sometimes you want instead to simply use the PHP in parts of a page and leave the rest. You can do this, too. <body> <div class="login"> <?php if($user->loggedIn()){ ?> <b>Hi!</b> <?php }else{ ?> <!-- HTML FORM HERE --> <?php } ?> </div> </body>


What are Perl PHP and Java Servlet's?

Perl, php and Java are all examples of programming languages.


How do you include a file in PHP?

To include a file in PHP all you need to do is use the include() function as I have shown you in the example below. <?php include("filename.php"); ?>