what I enjoy about your teaching are the various ways you refactor. I'm able to learn various ways to solve a problem and it teaches me different ways to understand code. Thank you.
In case anyone was as dumb as me, if you copy the files from laracast, be sure you heed his advice at 2:28 and add the -t public switch when you restart the php server, otherwise you will get a 'resource not found' error. Great series.
Wow, I learned a lot from this episode, and it was also a hard one, especially for us working on XAMPP where we have to play in the config file to make all of this work. The only things I wish this video told us about, which are really important notions to be able to understand what is going on, would be the following : what exactly is the docroot and how are relative paths built in PHP. I had to take a pause on the side to go see this so I could understand/follow along. Anyway, great video and I feel like I have grown up from this.
I'm really glad you're doing this series - most of all because it will help devs get started with PHP. For me though, even after 9 years I still don't know all of the fundamentals and it's nice to pick the subjects you've covered that I don't know well enough.
This is so true. The last time I heard Jeffrey's voice was on Envato and Tuts+. Even After 9 years of experience I find this so useful. Thank you Jeffrey! 🙏
The question is , what we consider as the 'fundamental' knowledge of PHP. In this series it's not only about the PHP as a language, but about the using of OOP techniques and principles building blocks of a modern web app. I think this series is more than a beginners guide, it demands some advanced knowledge and deeper understanding of OOP too and this is because the real 'power' of PHP is the well designed OOP capability, which only can be useful in capable hands. I think, this remarks has to be added to this series for the sake of the audience.
SIr many many thank you for this course, i'm very helpful from this course. i'm laravel developer. many thing was confusing in this framework, but now i have to clear it. thank you one more time from my heart.
I'm thrilled to be learning from you. Thank you for your step-by-step guidance. Your teaching style is exceptional. I just wanted to know which book do you recommand.
Hey Jeffery, thanks for this great content. I made sure to thumbs up all your videos. The one thing I'm sure would throw off a lot of beginners, is understating how you're able to think of using the PHP extract function. How would a beginner be able to filter through all the Google search results so they can find the PHP extract function? Beginners won't know the PHP extract function exists. I think part of your course should have taught what the thought process is when your trying to find the right PHP logic for your app. in additions to the great work you produced, this aspect would have added more value tremendously.
Nice to see how to organize something like a framework but more procedural like i think... Its easier to understand controllers, views etc without dealing with inherance
how can I change the root directory using htaccess? if I upload it to a server it reads index.php in root file. Am I making sense kindly guide thank you!
im working on window i create my public folder but i try to specify my root using -t and its not working it says "C:\xampp\htdocs\demo>-s localhost:80 -t public '-s' is not recognized as an internal or external command, operable program or batch file." pls what is going on with my command?
Please explain in a video all the command line stuff for Windows people who have never used it. I don't know what I'm looking at when I see it - and it's everywhere. I use XAMPP, and just use the app to start/stop servers. This would be a huge help. I've been doing PHP since 2001, but I'm really stupid when it comes to anything command line in website development.
Altough, is there a way to keep using view function inside view it self, but without explicitly forcing attributes over and over again? - + And still get heading into the banner.php ?
5:42: "now I won't have to remember what the name of the constant is." - but won't you still have to remember what the name of the function is? And the name of the function is the same as the name of the constant? So, wouldn't all this do is add a bit of complexity and change the BASE_PATH . [whatever] into base_path([whatever])? It's not even less characters, it's one more even, and on the other side so slower to add.
Hi jeffrey, It's been almost a week that you haven't uploaded any new video to the series please be consistent with this series because its the only source for me from which I'm learnin my programming concepts. Thank you for doing such great work.
🤔 that ..... require base_path("Core/" . $class . '.php'); ....doesn't work ........ searching for solution Solution found: must be changed also =another require in public\index.php =if functions.php is really moved to Core than another require in that index.php =and require in controllers otes create.php
when i am using php -S localhost:80 -t public, it is showing the error below. Failed to listen on localhost:80 (reason: An attempt was made to access a socket in a way forbidden by its access permissions) i am using wamp server what shall i do ?
what I enjoy about your teaching are the various ways you refactor. I'm able to learn various ways to solve a problem and it teaches me different ways to understand code. Thank you.
In case anyone was as dumb as me, if you copy the files from laracast, be sure you heed his advice at 2:28 and add the -t public switch when you restart the php server, otherwise you will get a 'resource not found' error. Great series.
Wow, I learned a lot from this episode, and it was also a hard one, especially for us working on XAMPP where we have to play in the config file to make all of this work. The only things I wish this video told us about, which are really important notions to be able to understand what is going on, would be the following : what exactly is the docroot and how are relative paths built in PHP. I had to take a pause on the side to go see this so I could understand/follow along.
Anyway, great video and I feel like I have grown up from this.
I'm really glad you're doing this series - most of all because it will help devs get started with PHP. For me though, even after 9 years I still don't know all of the fundamentals and it's nice to pick the subjects you've covered that I don't know well enough.
This is so true. The last time I heard Jeffrey's voice was on Envato and Tuts+. Even After 9 years of experience I find this so useful. Thank you Jeffrey! 🙏
The question is , what we consider as the 'fundamental' knowledge of PHP. In this series it's not only about the PHP as a language, but about the using of OOP techniques and principles building blocks of a modern web app. I think this series is more than a beginners guide, it demands some advanced knowledge and deeper understanding of OOP too and this is because the real 'power' of PHP is the well designed OOP capability, which only can be useful in capable hands. I think, this remarks has to be added to this series for the sake of the audience.
SIr many many thank you for this course, i'm very helpful from this course. i'm laravel developer. many thing was confusing in this framework, but now i have to clear it. thank you one more time from my heart.
Those 'extract($array)' thing is really new to me.. Thank you for making this video
thats some next level teaching
I'm thrilled to be learning from you. Thank you for your step-by-step guidance. Your teaching style is exceptional. I just wanted to know which book do you recommand.
Hey Jeffery, thanks for this great content. I made sure to thumbs up all your videos. The one thing I'm sure would throw off a lot of beginners, is understating how you're able to think of using the PHP extract function. How would a beginner be able to filter through all the Google search results so they can find the PHP extract function? Beginners won't know the PHP extract function exists. I think part of your course should have taught what the thought process is when your trying to find the right PHP logic for your app. in additions to the great work you produced, this aspect would have added more value tremendously.
Finally we'll start learn really handy things) my congrats to all members of this channel!
Nice to see how to organize something like a framework but more procedural like i think... Its easier to understand controllers, views etc without dealing with inherance
how can I change the root directory using htaccess? if I upload it to a server it reads index.php in root file. Am I making sense kindly guide thank you!
thanks
thnx so much Jeffrey !!
At 12:54 instead of using require base_path function I used this:
it's the same but as he taught us this was is better
For the banner of course you should provide the attributes array so the heading shows up correctly
Thank Jeffrey. I was a pleasure as always. I wish you moved ".view.php" part to view helper too.
We will.
We want PDO and oop in php pleaaaase
That's outstanding
Jeffrey builds laravel step by step)
Lovely video
im working on window i create my public folder but i try to specify my root using -t and its not working it says "C:\xampp\htdocs\demo>-s localhost:80 -t public
'-s' is not recognized as an internal or external command,
operable program or batch file." pls what is going on with my command?
Please explain in a video all the command line stuff for Windows people who have never used it. I don't know what I'm looking at when I see it - and it's everywhere. I use XAMPP, and just use the app to start/stop servers. This would be a huge help. I've been doing PHP since 2001, but I'm really stupid when it comes to anything command line in website development.
Altough, is there a way to keep using view function inside view it self, but without explicitly forcing attributes over and over again?
-
+
And still get heading into the banner.php ?
how about adding the classes in a models/ directory and the router.php in a routes/ directory
LAR' - This woman's area. Tribal - Vietnamese - XANADU
At 18:30 you moved five files, but I think you may have edited the video to not move the functions file?
No. Weirdly enough, that was an editor bug. We’ll deal with it in the next episode.
Happy new Year .. Where are you ? waiting for you ?
We're back today! New episode on Tuesday - with a regular schedule after that.
@@Laracastsofficial 😀 I wish you the best
how can I change include my js, CSS from the public folder to the header of my page????????
5:42: "now I won't have to remember what the name of the constant is." - but won't you still have to remember what the name of the function is? And the name of the function is the same as the name of the constant? So, wouldn't all this do is add a bit of complexity and change the BASE_PATH . [whatever] into base_path([whatever])? It's not even less characters, it's one more even, and on the other side so slower to add.
Hi jeffrey, It's been almost a week that you haven't uploaded any new video to the series please be consistent with this series because its the only source for me from which I'm learnin my programming concepts.
Thank you for doing such great work.
Please let me enjoy a week off for Christmas. 👍
🤔 that ..... require base_path("Core/" . $class . '.php'); ....doesn't work ........ searching for solution
Solution found: must be changed also =another require in public\index.php =if functions.php is really moved to Core than another require in that index.php =and require in controllers
otes create.php
cant wo use something to generate the pages, not to have this awfull situation where we have to modify multiple pages?
when i am using php -S localhost:80 -t public, it is showing the error below.
Failed to listen on localhost:80 (reason: An attempt was made to access a socket in a way forbidden by its access permissions)
i am using wamp server
what shall i do ?