I'm learning php after a very long time and this channel is on point... Rather than the old php courses and videos on yt. Thank you, sir, you made php more approachable for me. Last time I gave up on php around a year ago due to lack of interest and the oddity of php since there weren't many contents and the available ones were either old or hard for me to understand(cause_individuality!). Currently have watched 15 videos on incognito but gonna continue on my official login. Once again, thanks for your hard effort to make an old language like PHP rebirth. Hope more and more people use your sources as a reference like I'm doing now.
I'm just now watching all the videos and implementig every good practice to my first app, these videos have been so helpful for me! Thank you, sir! Everyday I come here to learn something from a source that is trustable.
Great lesson. In a small procedural personal php project I created, I used location headers to redirect after saving. Just saw that it was used but I didn't know anything else about it. But this lesson has covered it with explanations and covered many other areas too. These lessons are a gift Gio. Thanks alot. Also, I really like learning how things work. I'm now looking forward to seeing how frameworks help to make things faster. Thanks again
It would be awesome if in the future you'd teach a Laravel course (complete beginner to advanced). Given your knowledge and teaching skills, I'm sure many would pay to watch it.
It was very interesting to know about http request response numbers, by the time all of us always get 404 not found but no one knew why?😂 In Laravel I have used header but did not know where it comes from or how to correctly use it. Thank you Gio, can not wait to start the3section and the project.
Is there a reason why I'm not getting save dialog for files? File is still downloded from the "server", its just not giving me the option to select download location in both Chrome and Firefox.
Hello. Just PDO/MySQL videos left for second section. So probably 2-3 videos and we move on to 3rd. We'll work on a project in third section and cover more advanced stuff
http 2.0 should be faster/more efficient. You can read up on the exact differences between the two online, here is one as an example: www.digitalocean.com/community/tutorials/http-1-1-vs-http-2-what-s-the-difference
You can use include or require to do that but better way is to use namespaces. Watch the lesson about include and require and then watch the lessons about namespaces and autoloading, the link to playlist is in the description of this video
You could, but we are not using htaccess files, we are using nginx in this section, not apache. Also its better to handle such cases via routing within the application
In 2024, still this is the best Free Advanced Php Course !!
Thank you
I'm learning php after a very long time and this channel is on point... Rather than the old php courses and videos on yt. Thank you, sir, you made php more approachable for me. Last time I gave up on php around a year ago due to lack of interest and the oddity of php since there weren't many contents and the available ones were either old or hard for me to understand(cause_individuality!). Currently have watched 15 videos on incognito but gonna continue on my official login. Once again, thanks for your hard effort to make an old language like PHP rebirth. Hope more and more people use your sources as a reference like I'm doing now.
Thank you so much. I'm really happy to hear that 🙏
This PHP course is astonishing! Thanks a bunch!
You're very welcome 💙
I'm just now watching all the videos and implementig every good practice to my first app, these videos have been so helpful for me! Thank you, sir! Everyday I come here to learn something from a source that is trustable.
Happy to hear, thank you 💙
Great lesson. In a small procedural personal php project I created, I used location headers to redirect after saving. Just saw that it was used but I didn't know anything else about it. But this lesson has covered it with explanations and covered many other areas too. These lessons are a gift Gio. Thanks alot. Also, I really like learning how things work. I'm now looking forward to seeing how frameworks help to make things faster. Thanks again
Awesome, glad it was helpful. Thank you
Thanks a lot, bro
Thank you for support 💙
This was very valuable for my debugging thank you!
Great to hear, thank you
It would be awesome if in the future you'd teach a Laravel course (complete beginner to advanced). Given your knowledge and teaching skills, I'm sure many would pay to watch it.
I might :). Thank you for the suggestion
I would pay to watch a symfony course from you
Fantastic video, thanks
It was very interesting to know about http request response numbers, by the time all of us always get 404 not found but no one knew why?😂 In Laravel I have used header but did not know where it comes from or how to correctly use it. Thank you Gio, can not wait to start the3section and the project.
Glad to hear its helpful, thank you
Gio you are really good
Thank you
Is there a reason why I'm not getting save dialog for files? File is still downloded from the "server", its just not giving me the option to select download location in both Chrome and Firefox.
Check console & see if there are any errors
Very informative
Sounds like you said headers are case-sensitive, but they are indeed case-INsensitive.
That's right, I meant case-insensitive, not sure why it came out as case-sensitive. I cut it out so it doesn't confuse anyone. Thanks for catching it.
I try to implement download like you, and it works on firefox and not on chrome by saying insecure download blocked. WHY?
Something specific to your browser (security features) maybe or mismatching header, works fine on my end
Ok! Thanks bro, Another issue is I don't get a download window when I load a page is automatically downloaded and saved. @@ProgramWithGio
Gio, how many videos do you planning to realese? And when we'll reach the third section of the course - the advanced one? Greetings from Poland
Hello. Just PDO/MySQL videos left for second section. So probably 2-3 videos and we move on to 3rd. We'll work on a project in third section and cover more advanced stuff
I don't remember... did I mention how great you are? 🙂
💙💙💙
What is difference between Http 1.1 and 2.0 in create header like HTTP/1.1 404 Not Found. It will be working the same?
http 2.0 should be faster/more efficient. You can read up on the exact differences between the two online, here is one as an example: www.digitalocean.com/community/tutorials/http-1-1-vs-http-2-what-s-the-difference
how can i link file in folder 1 with a file in folder2 , i am coding : include_once 'fp/header.php'
You can use include or require to do that but better way is to use namespaces. Watch the lesson about include and require and then watch the lessons about namespaces and autoloading, the link to playlist is in the description of this video
So what are we going to build? Got curious now
Talked about it a bit at the end of first section. Going to be expense tracker kind of like budgeting app.
@@ProgramWithGio really? Completely missed it. Anyways, it will be fun, waiting for it
Nice but this dont redirect me to 403 page what i included in htaccess
Not sure what you mean, can you share your code? You can send me a DM on Twitter & send me the screenshot and I can take a look
sagol dzmao am kursma damawyebina samsaxuri
მაგარია, გაიხარე და წარმატებები
it will more help full for us if you push the code on github dear
In later videos code is pushed to GitHub. In some videos we don't do much so I don't push just small snippets.
What php text did you read man?
Youre like my personal php gpt.
Going forward, anything i didn't learn from your channel cannot be used in production.
Heh, thank you 🙌. I mostly read documentation & articles. I generally just do a lot of research to make sure I have facts right
Why not use .htaccess to redirect a 404 to a special page.
You could, but we are not using htaccess files, we are using nginx in this section, not apache. Also its better to handle such cases via routing within the application
.
?