There are so many contact information listed at the beginning of the article, which will inevitably make everyone feel a bit like AD, but there is no doubt that Mo Mo does have a little desire for expression^_^, although sometimes people will call her mother-in-law if she is too detailed. But fortunately, this kind of meticulousness is quite beneficial to programming!
It started when Momo Mo asked others how to learn PHP. Later, many people came to ask Mo Mo Mo how to learn PHP. No matter Mo Mo Mo is a novice or an experienced player, he always seems to be unable to find a clear clue. However, Mo Mo Mo’s answer is Now that I have learned PHP, the path I took is more or less useful for reference.
I don’t need to go into details about the background of PHP. I believe that when you choose a language, it is not based on its background and long history, but more importantly, its practicality. A flashy language, no matter how glorious its history, is not worth mentioning. Bi is about to decline. Fortunately, PHP has withstood the test, and therefore, it is indeed a language worth learning.
Mo Mo has always grown up listening to other people’s experiences. Therefore, based on the experience of his predecessors, Mo Mo has taken many detours and stepped into the right track faster. I would like to express my gratitude to those seniors whose names I don’t even know. Thank you to everyone. In Momo’s eyes, no matter how big or small the help is, as long as it is help, it will always make Momo’s heart warm. I think the seniors helped me not just to get a thank you from me, but more because of the help. Out of a sense of responsibility and an expectation of silence, I think that only by learning PHP well can I be worthy of the sweat of my predecessors.
As I said, Mo Mo finally feels a sense of responsibility. Mo Mo doesn’t know how much his experience can help novices, but Mo Mo understands that now is the time to fulfill his responsibilities. It is necessary for me to tell everyone about my experience. Those who hope to learn PHP well, only in this way can China's PHP continue to progress and develop, and occupy a place in the world.
During this period of silently learning PHP, I feel that the domestic PHP environment is becoming more and more mature, and the standards are gradually improving. The establishment of PHPCHINA marks that the PHP organization directly linked to the official has officially settled in China. I would like to offer my belated greetings. applause!
Okay, let’s get to the point:
Before I talk about my own learning methods, I would like to say something from my heart to those who hope to get useful information from my articles:
Silent articles will not contribute to your learning. The role of sex, whether you can succeed or not depends on yourself. Perseverance, persistence, and persistence are the only way to success.
Let me first summarize my own process of learning PHP:
Be familiar with the basic elements of web pages such as HTML/CSS/JS. At the completion stage, you can create a complete web page by yourself and be familiar with the element attributes.
Understand the concept and operation of dynamic languages. Mechanism, familiar with PHP syntax
Learn how to combine PHP and HTML to complete simple dynamic pages
Get in touch with MYSQL and start designing database programs
Constantly consolidate, understand most of the common PHP functions, and understand OOP, MYSQL optimization, and templates
Complete A fully functional dynamic site
My route may coincide with many enthusiasts who are learning PHP. This is also a step-by-step learning process. However, novices should not think that learning is quite simple after seeing the summary above. I have to pour some cold water on you here. Nothing is actually simple, even the sesame cakes in the snack bar are not made at once.
Let me first explain my learning ideas.
First of all, after understanding the concept of website, it is not difficult to see that any website is composed of web pages. In other words, if you want to complete a website, you must first learn to make web pages. Therefore, you must master HTML to lay the foundation for making websites in the future.
I think learning while doing is the most effective way to learn HTML. Of course, this method is also the most effective way to learn PHP.
Any element in HTML must be practiced personally. Only after you understand what effect an element will have, you will remember it deeply. Blindly reading books will definitely not work. I think the reason why most novices find the concepts difficult Learning mostly consists of one word "lazy". Laziness is the biggest enemy that prevents progress. Therefore, only by overcoming the habit of laziness can you learn something faster.
Perhaps when you are learning PHP, you just want to develop a website as quickly as possible, and you will also think of me making a website. Why do you need to learn such trivial things as web pages? It is not difficult to see that there are many novices who have high ambitions but low ambitions. This kind of thinking is undoubtedly building a castle in the air. If you don't build a foundation, how can you get a roof?
OK, mastering the technology of making static web pages is a prerequisite for learning to develop websites. This point will stop here. Because this article is not a tutorial article, it will not provide an in-depth analysis of the technology.
I assume that you can now complete a static page. Of course, whether it looks good or not is another matter. Momo’s first webpage is not good either, but no matter how ugly the "child" is, we are "parents" You can't dislike it, right? After all, this is our achievement.
Then let’s start learning the concept of dynamic language. Many people may be confused when they first come into contact with dynamic language. Why is this messy thing different when it is displayed on the web page? In fact, this is not a mess. Isn’t the HTML code you write also a bunch of characters? After all, the code is not output directly, but processed. To put it bluntly, HTML passes through the HTML parser, and PHP of course passes through the PHP parser. It is the same as learning HTML. If you want any parser To accomplish operations, you must use their specialized syntax constructs, so it's no wonder that PHP looks strange.
Current page 1/2 12Next page
The above introduces learning PHP. Let’s talk about how novices learn PHP network programming. Page 1/2 includes the content of learning PHP. I hope it will be helpful to friends who are interested in PHP tutorials.