PHP OOP Full Course

  Рет қаралды 115,438

How to code well

How to code well

Күн бұрын

Пікірлер: 172
@howtocodewell
@howtocodewell 5 жыл бұрын
Join our Discord server howtocodewell.net/discord and ask coding questions in the coding-help channel
@BillClinton228
@BillClinton228 4 жыл бұрын
Thank you so much for this tutorial. You have made life much easier.
@danielonibokun8351
@danielonibokun8351 5 жыл бұрын
Man you have no idea how clearly i am able to understand you compared to anyone else man. 101/100. Thank you!
@howtocodewell
@howtocodewell 5 жыл бұрын
That's great to hear! Thanks
@winstonmcquoid9336
@winstonmcquoid9336 5 жыл бұрын
Awesome video. I've been out of the PHP loop for a few years now and this was an excellent refresher and learning experience. Thank you!
@howtocodewell
@howtocodewell 5 жыл бұрын
Thanks great to hear. Enjoy
@ellbrant
@ellbrant 5 жыл бұрын
Thank you! I've been reading/researching OOP and your video put it all together for me. I especially liked that you showed the related errors, just being familiar with those will make created solid code easier. Can't wait to check out your other videos.
@howtocodewell
@howtocodewell 5 жыл бұрын
I'm glad you are finding these videos helpful. I've been live coding a PHP OO applications on Twitch and archiving them here on KZbin.
@nicollado1904
@nicollado1904 3 жыл бұрын
Thank you for this. I am not a native English speaker yet I find this tutorial quite comprehensive. This video saves my day.
@howtocodewell
@howtocodewell 3 жыл бұрын
Excellent, that’s very nice to hear
@SkyrimBeast
@SkyrimBeast 4 жыл бұрын
Many thanks for the video Peter. It's always good for me to watch courses like this as a kind of refresher. I'm the type of developer that tends to forget stuff I haven't had to use over a period of time.
@howtocodewell
@howtocodewell 4 жыл бұрын
Me too. I an always having to re trace my steps. I'm glad you liked it
@YPLabs
@YPLabs 5 жыл бұрын
Very good tutorials, thanks ! As the people below are saying your talking very clear and even in 1.5 speed it's like a breez.
@howtocodewell
@howtocodewell 5 жыл бұрын
Thank you very much. Please let me know if you have any suggestions for future videos
@musiclovers8488
@musiclovers8488 5 жыл бұрын
You are awesome dude!! I am from India and my English is not too good but how was you teaching that was totally awesome !! And the way of teaching is also too good !! Thanks a lot
@howtocodewell
@howtocodewell 5 жыл бұрын
That's great to hear. Thank you :)
@musiclovers8488
@musiclovers8488 5 жыл бұрын
You are welcome!! Can you upload video on one more topic !! How can we implement all these functions and how can we use in any real project?
@howtocodewell
@howtocodewell 5 жыл бұрын
I'm working on something like that on Twitch twitch.tv/howtocodewell
@jaymillena1053
@jaymillena1053 5 жыл бұрын
Thank you for this. This made correction to some of my false theory.
@howtocodewell
@howtocodewell 5 жыл бұрын
I'm glad you found the course useful
@sale7680
@sale7680 2 жыл бұрын
Bravo best teaching ever 🙌
@howtocodewell
@howtocodewell 2 жыл бұрын
Thank you
@ruans.p.5323
@ruans.p.5323 3 жыл бұрын
Good job, thank you. Subscribed.
@majedhk5460
@majedhk5460 5 жыл бұрын
10/10 tutorials Thank you sir *respects*
@howtocodewell
@howtocodewell 5 жыл бұрын
Thank you. That's great to hear
@br31woodlands69
@br31woodlands69 4 жыл бұрын
This is really a wonderful tutorial. Thank you much!
@howtocodewell
@howtocodewell 4 жыл бұрын
You're very welcome!
@mackynyxz
@mackynyxz 4 жыл бұрын
Nice tutorial! it refreshes me a lot!.
@howtocodewell
@howtocodewell 4 жыл бұрын
Glad to hear that!
@shishupalsinhsodha5397
@shishupalsinhsodha5397 3 жыл бұрын
I found this very useful Tutorial
@howtocodewell
@howtocodewell 3 жыл бұрын
Thank you
@ahmaddawood9691
@ahmaddawood9691 5 жыл бұрын
Excellent tutorial , Thanks a lot
@howtocodewell
@howtocodewell 5 жыл бұрын
You are more than welcome
@rimantasdanilevicius6754
@rimantasdanilevicius6754 5 жыл бұрын
Hi, I am did not understood one part: 1:04:41. You have 2 classes, none of classes have static method. When you want get smth Class usually we use echo $object->parameter of metchod, and this Employee:: calls static parameters or methods, is it right? I get lost here, why you use this syntax Emplyee::. is it because it is constant?
@howtocodewell
@howtocodewell 5 жыл бұрын
Excellent question. Here I am accessing the constant value from outside of the class. To do this you use CLASS_NAME:: CONSTANT To do this within the class you would use self::CONSTANT In my next PHP OOP course I will explain this better. This was a great question and I will add it to the 10k subscribe AMA. Thank you
@dibbyo456
@dibbyo456 3 жыл бұрын
Thank you for using CLI.
@howtocodewell
@howtocodewell 3 жыл бұрын
I find that it’s the best way to do it.
@sharmashivanand
@sharmashivanand 4 жыл бұрын
Have been coding php for several years but it's pure joy to revisit fundamentals especially demonstrated so well. Do you also have tots on singleton, abstract, final classes?
@howtocodewell
@howtocodewell 4 жыл бұрын
Not yet by they are on my list for future tutorials
@slapmyfunkybass
@slapmyfunkybass 5 жыл бұрын
Thanks for the video. Coming from a c# background I needed a refresher on php’s take on oop. Just one point, static declarations are simply shared values between different instances of the class. So you could in your constructor reference the static property, (let’s say it’s called add with default value 0), with add++. Each time an instance of that class is created, it will remember the value. You can’t do this with normal properties as they always default to their original value. Maybe php is different, but I wouldn’t have thought so.
@howtocodewell
@howtocodewell 5 жыл бұрын
Yes that is a great point. I'm planning to do something similar to this when updating the invoice totals per invoice item.
@kensleylewis
@kensleylewis 5 жыл бұрын
That last part was tricky, because it feels like it shoul of been parent not self, sense it was defined in the parent class, but then returned in the extended class.
@howtocodewell
@howtocodewell 5 жыл бұрын
Yep that can trip me up too.
@mostafahsv3360
@mostafahsv3360 5 жыл бұрын
Thanks for this great video. I could understand every word as your style is smooth and simple. I just wanted to know what kind of code editor you use because I see it's great. Thanks in advance.
@howtocodewell
@howtocodewell 5 жыл бұрын
Hi, The code editor is PHPStorm
@baref0ot455
@baref0ot455 5 жыл бұрын
Is there such a thing as an association relationship in PHP? Such that a classB can contain an instance of classA as a property inside of classB? What you would call containment in other OO languages such as Java or C#. If not, how could you accomplish this is PHP? Example: class A{ // properties public string $name = ""; }// end class A class B{ // properties public $obj = new A(); }// end class B
@howtocodewell
@howtocodewell 5 жыл бұрын
Hey Baref0ot yes you could use a factory pattern for this or a singleton. These are great questions. May I invite you to our Discord server where you can ask these types of questions to our growing community. You can also format code far better in Discord than KZbin comments howtocodewell.net/discord
@andreiindries1121
@andreiindries1121 5 жыл бұрын
Awesome tutorial. Can you please tell me the Color Theme you are using? Thank you.
@howtocodewell
@howtocodewell 5 жыл бұрын
I think this is Dracula. I prefer dark themes
@andreiindries1121
@andreiindries1121 5 жыл бұрын
@@howtocodewell Thank you. Yes I am using also Dark Themes. The one you used is very easy for the eyes. I will search for it in VS Code.
@mistacodeTV
@mistacodeTV 5 жыл бұрын
Awesome video.
@howtocodewell
@howtocodewell 5 жыл бұрын
Thank you
@ramam8582
@ramam8582 5 жыл бұрын
awesome video sir
@howtocodewell
@howtocodewell 5 жыл бұрын
Thank you
@yorkshireplumbing
@yorkshireplumbing 4 жыл бұрын
Why in the __set and __get methods did you use the syntax $this->$name instead of $this->name, like in the other examples?
@howtocodewell
@howtocodewell 4 жыл бұрын
I'm not sure. Perhaps I slipped up
@HarisPervaiz
@HarisPervaiz 5 жыл бұрын
Hello peter, thanks for the amazing tutorial, made my concepts clear however i have one question you called return self::$bloodType? wouldnt it be parent::$bloodType? i tested both and it outputs the same result. so whats the recommended option self or parent considering your example above
@subish20me
@subish20me 2 жыл бұрын
self keyword is used to access the properties and methods which been declared as static whereas parent keyword is used to inherit properties/methods from parent class to child
@matthewtang2148
@matthewtang2148 5 жыл бұрын
may I know what tool you are using? Since @5:22, it showed the explanation of the errors that is easy to understand. Appreciate for your tutor :D !
@matthewtang2148
@matthewtang2148 5 жыл бұрын
thumb up and subscribed your channel !
@howtocodewell
@howtocodewell 5 жыл бұрын
Do you mean the editor. It's PHP Storm
@matthewtang2148
@matthewtang2148 5 жыл бұрын
@@howtocodewell thanks!
@tiffanyurigirlsg3185
@tiffanyurigirlsg3185 5 жыл бұрын
May I know the code editor he is using in this video? Thank you
@howtocodewell
@howtocodewell 5 жыл бұрын
This is Phpstorm
@jeannoel8041
@jeannoel8041 4 жыл бұрын
A nice video. Anyway, I had a question on how to pass a value in the setters method so that you can access the private properties. Do you have to pass that private property (argument) in the setters method so that it can be accessed outside the scope
@howtocodewell
@howtocodewell 4 жыл бұрын
You could use a public getter.
@sunnywaykar7175
@sunnywaykar7175 4 жыл бұрын
Thank you sir..
@howtocodewell
@howtocodewell 4 жыл бұрын
My pleasure
@syaleni2
@syaleni2 5 жыл бұрын
A question that popped to my head is that, the __construct method is a public function. Nevertheless, when the Person class was extended by the Employee class, in the __construct method for Employee, the __construct method of Person class was called statically. Shouldn't that cause an error?
@howtocodewell
@howtocodewell 5 жыл бұрын
Yes I can see what you mean. This how the parent class is called and it's not done statically. You've picked on a quirk of PHP 😃
@SpantikLab
@SpantikLab 5 жыл бұрын
Hi Nice video helped me alot.But i have a question in getter and setter method.My question is what is the advantage of using a member of class private if it is accessible with getter and setter instead make them all public??
@Peeetfish
@Peeetfish 5 жыл бұрын
Because you can control programaticly how this attribute is being manipulated. You could specify in your setter that only values greater than zero are allowed etc...if it's a public attribute you any function could access the attribute and do what ever it want with the data
@SpantikLab
@SpantikLab 5 жыл бұрын
@@Peeetfish Thanks Got it
@bernardchisumo4054
@bernardchisumo4054 5 жыл бұрын
Great Course
@howtocodewell
@howtocodewell 5 жыл бұрын
Thanks you Bernard
@Rilex037
@Rilex037 5 жыл бұрын
Construct is magic method? So I need another method to supply mana potions to it, thanks.
@nemanjavukmirovic2262
@nemanjavukmirovic2262 5 жыл бұрын
good job sir!!!!!
@howtocodewell
@howtocodewell 5 жыл бұрын
Thank you
@kinganthonyting7581
@kinganthonyting7581 5 жыл бұрын
Hi! Great tutorial! May I know what code editor are you using? Thanks!
@rutera24
@rutera24 5 жыл бұрын
I think a code editor use is IDE PhpStorm
@howtocodewell
@howtocodewell 5 жыл бұрын
Sorry for not getting back to you. Yes it's PHPStorm. One of my favourite coding IDE's
@howtocodewell
@howtocodewell 5 жыл бұрын
Thank you for answering this. You're totally correct. It's PHPStorm 😀
@kinganthonyting7581
@kinganthonyting7581 5 жыл бұрын
@@rutera24 Thank you so much!
@kinganthonyting7581
@kinganthonyting7581 5 жыл бұрын
@@howtocodewell It's okay. Thank you so much!
@jhonromerofitness
@jhonromerofitness 5 жыл бұрын
Is there anything specific you did to your terminal so it shows the PHP output as it is on your video?
@howtocodewell
@howtocodewell 5 жыл бұрын
No, this is the inbuilt terminal in PHPStorm
@jhonromerofitness
@jhonromerofitness 5 жыл бұрын
@@howtocodewell okay thanks!
@just_the_job
@just_the_job 4 жыл бұрын
Hi Peter, I was just wondering is there a follow on course on your channel that takes all this on to using interfaces, traits, abstraction and maybe the odd design pattern for a particular problem? Many thanks.
@howtocodewell
@howtocodewell 4 жыл бұрын
Not yet but i will add it to my ideas list
@just_the_job
@just_the_job 4 жыл бұрын
@@howtocodewell No worries Peter, thanks for the response. Your videos are greatly appreciated, there's not many youtubers that explain oop php in the detail you have, I feel I understand your explanations really well.
@howtocodewell
@howtocodewell 4 жыл бұрын
Thank you Justin
@aprattdesign
@aprattdesign 4 жыл бұрын
Why are we calling self::$bloodType instead of parent::$bloodType from the Employee extended class?
@howtocodewell
@howtocodewell 4 жыл бұрын
Do you have a time code for this?
@HolyErne
@HolyErne 5 жыл бұрын
Why you have to type $this -> $firstName = $firstName; I don't get this part? $firstName is equal to it self?
@nemanjavukmirovic2262
@nemanjavukmirovic2262 5 жыл бұрын
i dont understand that too, i just accepted it is this way to write...i guess thats how php know its a definition belonging to classes...but good question tho
@cristianenache8715
@cristianenache8715 5 жыл бұрын
He doesn't actually explain a lot of what he's typing. $this->firstname refers to the public property firstName of the Person object (note there's only one dollar sign, at the beginning of this). And the $firstName on the right side of the equals sign is the parameter that the function receives, when you instantiate the class. So the constructor function receives a value for $firstName, and stores it in the public property with the same name. $this->firstName = $firstName;
@howtocodewell
@howtocodewell 5 жыл бұрын
Thank you for jumping in and answering this. You are correct. I think I will need to do a refresher course or something to explain this parts in more detail.
@perianka
@perianka 4 жыл бұрын
@@howtocodewell please do :) we would apreciatte that
@perianka
@perianka 4 жыл бұрын
What's the point of makin the variables private if you're gonna write the __$SET and __$GET methods anyway?? anybody is gonna be able to change them and get them I know that you can put certain parameters in the setter to prevent the user to set it's value to something invalid, but it's still pretty public to me
@howtocodewell
@howtocodewell 4 жыл бұрын
Yes this was just for demonstration purposes. Magic methods are useful when you want to apply rules to a dynamic set of properties. I don't really use them much in my day to day work.
@perianka
@perianka 4 жыл бұрын
@@howtocodewell oh ok thanks! by the way, I would love a more advanced tutorial on php :) like about OOP and things like that
@howtocodewell
@howtocodewell 4 жыл бұрын
Hey Irina, Yeah I'm planning a PHP8 series in the future. Is there anything in particular you would like me to cover?
@Desertbynight
@Desertbynight 5 жыл бұрын
Great tutorial! May I ask what is your code editor?
@howtocodewell
@howtocodewell 5 жыл бұрын
Sure. For PHP I use PHPStorm and for Python I use PyCharm
@twelve9046
@twelve9046 5 жыл бұрын
NetBeans
@howtocodewell
@howtocodewell 5 жыл бұрын
I used to use Netbeans i loved that editor. Have you considered PHPStorm?
@twelve9046
@twelve9046 5 жыл бұрын
@@howtocodewell nah, i hate subscription model of payment, i would like to pay once
@howtocodewell
@howtocodewell 5 жыл бұрын
Yes I know what you mean
@JNET_Reloaded
@JNET_Reloaded 5 жыл бұрын
So confusing can i have the example code you used please il figure it out by playing?
@howtocodewell
@howtocodewell 5 жыл бұрын
I don't think it's available but I will have a hunt on my old GitHub repos and check
@matthewtang2148
@matthewtang2148 5 жыл бұрын
btw which time zone and when will you start the web chat on Friday?
@howtocodewell
@howtocodewell 5 жыл бұрын
I'm not sure which we chat you mean? I live stream on Twitch Tuesday and Thursday morning's at 07:00 GMT and Sunday's at 14:30 GMT
@matthewtang2148
@matthewtang2148 5 жыл бұрын
@@howtocodewell got it, thanks :D
@armincal9834
@armincal9834 5 жыл бұрын
so i tried doing: $tom = new Person('Tom' , 'abc' , 'm'); $tom -> SayHello(); it gives me an error: too few arguments supplied for SayHello, expected 3 suplied 0. i thought the entire logic behind doing all this was to avoid having to re-write name,lastname,gender everytime? ok i found the answer myself, and im keeping this comment for anyone who might run ino the same problem in the future, when you define the SayHello function in your class, u gotta keep the argument list empty cz if u don't it will expect them even if the program doesn't really need them, what i did initially was this: SayHello($name ,$lastname , $gender) { //blah; } changed it to SayHello() { //blah; } and it works now xD
@howtocodewell
@howtocodewell 5 жыл бұрын
Yeah that should be the case. The sayhello method shouldn't take any arguments. Perhaps something else is wrong. Feel free to post your code to pastebin and share the link so I can take a look
@armincal9834
@armincal9834 5 жыл бұрын
@@howtocodewell thank you very much for your quick answer, it was quicker than some paid UDEMY courses xD like i said, changing the arguments did work, imma like and subscribe to support ur channel xD
@Alexandre_amds
@Alexandre_amds 5 жыл бұрын
Parabéns
@howtocodewell
@howtocodewell 5 жыл бұрын
Thank you
@ValentinDragan
@ValentinDragan 5 жыл бұрын
What's "oops" in you vocabulary? 32:20 38:56
@howtocodewell
@howtocodewell 5 жыл бұрын
That's me making mistakes whoops 😂
@ValentinDragan
@ValentinDragan 5 жыл бұрын
@@howtocodewell But there were none or so it seemed.
@howtocodewell
@howtocodewell 5 жыл бұрын
I think it's my English accent. When I miss type something or think that I've missed typed something I say oops out of habit. Perhaps I should do a 'oops' montage video hahaha
@ValentinDragan
@ValentinDragan 5 жыл бұрын
:))))
@howtocodewell
@howtocodewell 5 жыл бұрын
Perhaps someone from the community could do that hahha. I'm sure I have done this a bunch of times throughout my videos
@westfield90
@westfield90 4 жыл бұрын
Just don’t know when to use the arrow sign? What does that mean?
@howtocodewell
@howtocodewell 4 жыл бұрын
Do you mean this '->' as in $this->name; ? The arrow symbol here is a means to access the property or method from a class. If you join our Discord server we can help with code snippets. howtocodewell.net/discord/
@westfield90
@westfield90 4 жыл бұрын
@@howtocodewell Thank you. Yeah I see that ' -> ' all the time in PHP and Laravel code and no idea what it means. I will definitely look into joining your site. Thank you
@westfield90
@westfield90 4 жыл бұрын
@@howtocodewell BTW I have to say that I really love your clear articulate speaking and teaching style. Its very conducive to absorbing and learning this material. I would love to see you do more course and especially Laravel and React
@howtocodewell
@howtocodewell 4 жыл бұрын
I have a new HTML/JS/CSS course coming out next week and on our Discord server I have asked which course I should do next. React is an option but I think it might end up being a PHP course due to the community responses
@robtee7655
@robtee7655 5 жыл бұрын
Great Video. Like your accent. But Oriented != OrienTATed.
@howtocodewell
@howtocodewell 5 жыл бұрын
Haha 😀😀👍
@robtee7655
@robtee7655 5 жыл бұрын
@@howtocodewell Just trying to be helpful. :) The video is great!! Looked all over for something like this. Cheers and great job, again.
@yagshaiq3
@yagshaiq3 5 жыл бұрын
is this video complete?
@howtocodewell
@howtocodewell 5 жыл бұрын
It's complete in the sense that I won't be adding to it but it's not complete in the sense of OOP. I'm currently developing a new course on OOP design patterns
@skrezwan12
@skrezwan12 5 жыл бұрын
Your "upps" are so cute :3
@howtocodewell
@howtocodewell 5 жыл бұрын
Hi Sk, I'm unsure what you mean by my 'upps' - But I will take it as a compliment 😊👍😃
@skrezwan12
@skrezwan12 5 жыл бұрын
@@howtocodewell "That's you making mistakes ""whoops"" " !!! :v (y) btw, carry on.
@howtocodewell
@howtocodewell 5 жыл бұрын
I totally get that now! Other commenters have mentioned it too. There should be a Whoops montage video of all of my "Upps, Whoops and Opps" hahaha
@navjotsingh2251
@navjotsingh2251 5 жыл бұрын
Peter Fisher make this haha it’ll be a laugh.
@maozedong5311
@maozedong5311 4 жыл бұрын
@@howtocodewell right
@abhiraj3477
@abhiraj3477 6 жыл бұрын
Sir please provide php oop project
@howtocodewell
@howtocodewell 6 жыл бұрын
Do you have anything in mind?
@skrezwan12
@skrezwan12 5 жыл бұрын
@@howtocodewell Ticket or Hotel booking system may be the best for the learner. You can consider my idea. Thanks :)
@howtocodewell
@howtocodewell 5 жыл бұрын
That's a good suggestion
@husseinmcheni3253
@husseinmcheni3253 5 жыл бұрын
the best is hotel booking system
@howtocodewell
@howtocodewell 5 жыл бұрын
Great suggestion
@matt6805
@matt6805 5 жыл бұрын
I don't understand the point of using the magic __get() and __set() methods on the private class variables. In the previous lesson, he says that you use the private declaration to restrict variable access to within the class, which makes total sense. But then, he goes on to use these magic methods and completely overrides the reason for making them private in the first place! He's essentially made them public. I could see using these magic methods to remove the boilerplate code for writing getters and setters, but I don't understand why you're using them to expose private variables outside of the class. Am I missing a fundamental point here?
@howtocodewell
@howtocodewell 5 жыл бұрын
Hi Matt, no you're not missing anything and this is a great question. The magic methods all for access to the private properties. They are a quicker way to do it. Personally I don't like using them myself as they obscure the class definition. However they can be useful for setting defaults. Imagine you had serialised and unserialised an object and over time that objects class definition class has changed. In this case you may want to have a safety net to catch any properties that don't exist and set defaults.
@attaulmustafamustafa8572
@attaulmustafamustafa8572 5 жыл бұрын
hello sir , i want to insert php script into mysql.. how i can do..
@howtocodewell
@howtocodewell 5 жыл бұрын
I'm not sure I would recommend doing that. But I guess it would be stored as a string.
@mrbale1815
@mrbale1815 4 жыл бұрын
You can create a new Employee with no $name , but still execute sayHello();
@martinkrivosija9685
@martinkrivosija9685 4 жыл бұрын
Orientated != Oriented
@howtocodewell
@howtocodewell 4 жыл бұрын
Can I ask where you spotted this mistake please?
@martinkrivosija9685
@martinkrivosija9685 4 жыл бұрын
@@howtocodewell You say it at 0:09 :) Wonderful tutorial on OOP, one of the clearest explanations on youtube.
@umarhasnain7369
@umarhasnain7369 4 жыл бұрын
@@martinkrivosija9685 If it is wonderful, that why are you pointing this small mistakes? Adore this tutorial, not abuse.
@martinkrivosija9685
@martinkrivosija9685 4 жыл бұрын
@@umarhasnain7369 Erm okay. Didn't know pointing something out that he can improve on next time is "abuse". You need to relax. The creator clearly read it as constructive criticism.
@2wheeledgreco271
@2wheeledgreco271 4 жыл бұрын
I got a little bit of a couch->corona
@howtocodewell
@howtocodewell 4 жыл бұрын
I'm not sure what you mean....
@2wheeledgreco271
@2wheeledgreco271 4 жыл бұрын
@@howtocodewell me neither
@howtocodewell
@howtocodewell 4 жыл бұрын
🤣🤣🤣
@2wheeledgreco271
@2wheeledgreco271 4 жыл бұрын
@@howtocodewell anyway great tutorial
@saltplug4395
@saltplug4395 4 жыл бұрын
Reeeeturn. Lol
@howtocodewell
@howtocodewell 4 жыл бұрын
Pahahaha is that how I say it. I need someone to create me a blooper reel. hahaha
@saltplug4395
@saltplug4395 4 жыл бұрын
@@howtocodewell This video may have saved my career though, for real. Thanks. (15 year functional coder)
@howtocodewell
@howtocodewell 4 жыл бұрын
@@saltplug4395 Wow really. That is great to hear. All the best! :)
@adante407
@adante407 5 жыл бұрын
Great tutorial. But your text is too small for iPad, mobile etc, very hard to distinguish what you are typing, your theme doesn't help, that's why VS Code is so great for tutorials. I am not criticising, it looks a great tutorial, but unfortunately the syntax is just ineligible.
@howtocodewell
@howtocodewell 5 жыл бұрын
Thank you that is some great feedback. I will take this into account for future tutorials. I appreciate you bringing this to my attention
@adante407
@adante407 5 жыл бұрын
@@howtocodewell No probs, like I said I'm not criticising, on the contrary, its just unfortunate because it inhibits what looks a fantastic tutorial. Thanks. 👍
@howtocodewell
@howtocodewell 5 жыл бұрын
Thank you
@navjotsingh2251
@navjotsingh2251 5 жыл бұрын
Peter Fisher it all looks fine and well on my iPad Pro running iOS 13. Not to sure what problems Sean is facing...
@mistacodeTV
@mistacodeTV 5 жыл бұрын
Awesome video.
@howtocodewell
@howtocodewell 5 жыл бұрын
Thank you
PHP Command Line Interface For Beginners Full Course
34:34
How to code well
Рет қаралды 10 М.
Is the PHP contract market dead?
7:45
How to code well
Рет қаралды 548
The Best Band 😅 #toshleh #viralshort
00:11
Toshleh
Рет қаралды 22 МЛН
5 Web Development predictions for 2025
25:31
How to code well
Рет қаралды 103
Learn how to use Laravel middleware
9:48
How to code well
Рет қаралды 35
HTCW Podcast #207 - PHP 8.4 and Symfony security advisories
58:06
How to code well
Рет қаралды 67
Web Dev explainer - What is a database schema
16:35
How to code well
Рет қаралды 478
How To Code Well year in review
8:09
How to code well
Рет қаралды 111
How to deploy a Laravel API using CI/CD GitHub actions
23:22
How to code well
Рет қаралды 280
HTCW Podcast #212 - Symfony killer features
36:00
How to code well
Рет қаралды 61