- Overview
- Transcript
11.1 Conclusion
Becoming a web developer is more than just working in the browser. Web developers write applications, and you are on that path. I encourage you to continue learning HTML, JavaScript, and PHP. But when you're comfortable, branch out to other languages and platforms. The more exposure and experience you have with other languages and platforms, the better you'll become as a developer.
My name is Jeremy McPeak, and from all of us here at Envato Tuts+, thanks for watching.
1.Introduction2 lessons, 06:25
1.1Introduction01:51
1.2What You Need04:34
2.How the Web Works2 lessons, 16:03
2.1Networks and DNS09:20
2.2HTTP and the Web Server06:43
3.Creating Documents3 lessons, 27:13
3.1Marking Up a Document09:38
3.2Making Our Document Valid06:22
3.3Semantic and Generic Elements11:13
4.Styling Documents3 lessons, 34:07
4.1Adding Style08:17
4.2CSS Selectors16:15
4.3Modifying Layout09:35
5.Scripting Documents3 lessons, 22:36
5.1Variables and Functions09:06
5.2Writing Your Own Functions05:34
5.3Objects07:56
6.The Document Object Model6 lessons, 42:45
6.1DOM Basics08:58
6.2Finding Elements07:40
6.3Working With `NodeLists`04:30
6.4Manipulating an Element's CSS Classes04:29
6.5Listening for Events08:42
6.6Practicing the Concepts08:26
7.HTTP Requests With JavaScript1 lesson, 09:16
7.1The fetch() API09:16
8.Introduction to Server-Side Development5 lessons, 43:24
8.1Introduction to Server-Side Development10:31
8.2Your First Line of PHP Code06:57
8.3Functions and Variables08:00
8.4Parameters and Decisions08:13
8.5Getting Data From the User09:43
9.Getting Started With Databases3 lessons, 31:01
9.1Create a Users Table12:00
9.2Create a Posts Table10:20
9.3Inserting Data08:41
10.Using PHP to Interact With MySQL4 lessons, 51:59
10.1Reading and Displaying Data12:34
10.2Passing and Validating Data11:58
10.3Updating Data14:52
10.4Joining Data (And Deleting Posts)12:35
11.Conclusion1 lesson, 01:47
11.1Conclusion01:47
11.1 Conclusion
Before I leave you, here are a few things that I hope you take away from this course. First, I hope you have a better understanding of how the web works in general. In the first few lessons, you learned about networks, DNS, HTTP, and the web server. Now, you won't use all of that information all of the time. In fact, you won't even have to worry much about IP addresses or DNS, unless if you are responsible for setting them up, but you at least have an idea of how they work. Second, I want to emphasize the relationship between the technologies that we use to create web pages. We use HTML, CSS, and JavaScript to build interactive web pages that engage our users. We use HTML to add structure to our documents, because without it, we'd have just a jumbled mess of text. We rely upon CSS to apply style to our documents. And we can even use it to change the layout of our page without modifying any of our markup. And then of course, there's JavaScript. And with it, we can add behaviour to our pages. We can manipulate elements and change the style applied to them, as well as respond to user's actions with events. And then finally, there's PHP. And with it, you now know how to write code that executes on the server. You know how to accept user input stored in a database and retrieve that data in order to display it in the browser. That's a rather long winded way of saying that you are well on your way to becoming a web developer. Thank you so much for watching this course. Please feel free to contact me through Twitter or the Tuts+ forums if you have any questions. From all of us here Tuts+, thank you and I will see you next time.