Searched high and low... came across this Hollingsworth guy again. And again he save me from pulling my hair out. Excellent explanation! Thank you again.
Cool! I LOVE how basic you go at the beginning. This is what I am missing as a front-end developer trying to learn backend. Even if I understand the basics of programming really well, I don't understand the fundamental architecture. This has been super enlightening. Will you do a series on Laravel as well?
I have courses on both of those, linked to in the description. I will add some more CI videos in the future however, no ETA at the moment but they are on my list.
@@dave-hollingworth Good afternoon, I am taking the codeigniter course in Udemy, excelent class. Just got stuck with CLI the command line, spark for migrations giving me an access error to the database, Would you help me on that issue? Thanks in advance
@@dave-hollingworth Dave I figured it out, some how the user did not have permisions & deleted it & created it again, all working great now! Great Class! 👏🏽👍🏽 Thank You!
great explaination!!! i just started learning CI4 (no background of previous versions), as a newbie from Oracle Forms & Apex, i want to ask is there a way i can create a 'Single View' for both methods Add & Edit ? like we can have in Oracle Forms and Oracle Apex and/or like a single Method to perform different tasks as per parameter, if so, please provide a link to the guide from where i can create a single Modal Form for both operations changing $title and passing primary key in case of Edit otherwise it will be blank to Add. regards.
Yes, kind of - you can create add and edit views, and include in them a common form view that contains the same form fields. This way you only have the form code once.
@@dave-hollingworth thanks very much for very quick response and help. will try how i can achieve this as i mentioned i am newbie, just few days back started learning CI 4. kind regards
@@ahmedharoon2740 You can create a view that contains the form, then include this in another view like this: this would include the view app/Views/Users/form.php
Hello sir. Does udmey course includes how to use pagination and third party library using composer? And does it had method to create admin panel and front end with same library? Thank you
hi, I am working on Codeigniter 4.2.1 localhost as i placed default controller in URL it showing error "404 File not Found Can't find a route for 'get: /home'."
Yes, I completely updated it recently. It's a couple of minor versions behind the latest release, but the content has been amended where necessary to reflect the changes.
hi, in Codeigniter 4, can i have an example of 2 tables master-detail like i can create in Oracle Apex where master is in Form style single record (in above region) and detail in Grd style multi-row (say tabular using datatable etc.), i failed to find yet, please help us. regards
Yes you could do that, but I'm not aware of any part of CodeIgniter that would do that for you automatically, you'd have to query the necessary data manually in a controller method
@@dave-hollingworth thank you sir for your reply. it is simple for seniors like you, i am a very beginner, even don't know about editable datatable how to's... so please please, give us a working example or a link from where i can understand what i want to achieve using CI4 + JS etc. regards
@@ahmedharoon2740 I do plan to make a datatables video at some point, but I can't say when I'll be able to do it - in the meantime I would suggest the official documentation and examples there, they're very good - try it with plain PHP first, then you can get a CI application to produce the same data
+1 sub. Like you way of teaching, really helpful. I've been confused in the add a session title, what the difference when you hand code and use the session title. ?
@@TeacherRichPH You configure the web server so that the public folder is the root folder. So the file public/index.php for example would be available in the web root, e.g. localhost/index.php
Thank you for the feedback! I found that typing everything in did waste a lot of the viewer's time, so I try and highlight everything when inserting it using that method. Some like it, some don't. I haven't come up with an alternative that everyone likes yet!
@@dave-hollingworth Thanks for the reply :) What about both methods? of course, not everyone likes writing HTML and CSS to make it look better, but imagine when we write notes, not that we will read them after, but writing helps us remember things! Best regards ✌️
Of course: the current best price is available here (available for the next five days): www.udemy.com/course/codeigniter-from-scratch/?couponCode=268D0BEA01A7D18DFF8D
Thanks a ton! Been looking for a non-tutorial style Codeigniter course cos I wanna focus solely on architectural knowledge, found the perfect video.
Nice and clear explanation!
Looking forward for the next videos on this series on CodeIgniter!
Thanks!!
Searched high and low... came across this Hollingsworth guy again. And again he save me from pulling my hair out. Excellent explanation! Thank you again.
* Hollingworth (but thank you for your kind words! Glad you liked the video)
Thanks Dave for this series.
Thank you,... This just cleared a lot off Fog 🔥
Perfect English, great explanation, amazing content 🤗
just awesome, you have brillient teaching art, please give the full video for codeignitor
Cool! I LOVE how basic you go at the beginning. This is what I am missing as a front-end developer trying to learn backend. Even if I understand the basics of programming really well, I don't understand the fundamental architecture. This has been super enlightening. Will you do a series on Laravel as well?
Thank you for your kind comments! I have a Laravel series on my list to do when I get chance, yes :-)
@@dave-hollingworth a Laravel intro, series or even an Udemy course from you are on my #1 ToWatch and ToBuy list :) Really looking forward to it.
Thanks!
Thank you so much!
Dave, great content and clearly explained.
Perfect explanation. Thank you, dave.
Need more of this!!!
I just re-watch it. Thanks Again Dave (I had to say it!)
Please do a course or tutorial using Symfony framework.... thanks sir... you really explained very clear..
Perfect! Best so far. Thanks
Thank you mate
Thanks my lord :) u just saved my college study to web programming basics
Subscribe +1
Excellent job sir
Will You continue on this series?
Or Do You have a course about MVC and/or CodeIgniter?
I have courses on both of those, linked to in the description. I will add some more CI videos in the future however, no ETA at the moment but they are on my list.
@@dave-hollingworth
Good afternoon, I am taking the codeigniter course in Udemy, excelent class.
Just got stuck with CLI the command line, spark for migrations giving me an access error to the database,
Would you help me on that issue?
Thanks in advance
@@someutubchannel69 Yes of course - please can you ask your question in the Q&A section in Udemy? Thanks!
@@dave-hollingworth
Dave I figured it out, some how the user did not have permisions & deleted it & created it again, all working great now!
Great Class! 👏🏽👍🏽
Thank You!
great explaination!!! i just started learning CI4 (no background of previous versions), as a newbie from Oracle Forms & Apex, i want to ask is there a way i can create a 'Single View' for both methods Add & Edit ? like we can have in Oracle Forms and Oracle Apex and/or like a single Method to perform different tasks as per parameter, if so, please provide a link to the guide from where i can create a single Modal Form for both operations changing $title and passing primary key in case of Edit otherwise it will be blank to Add.
regards.
Yes, kind of - you can create add and edit views, and include in them a common form view that contains the same form fields. This way you only have the form code once.
@@dave-hollingworth thanks very much for very quick response and help. will try how i can achieve this as i mentioned i am newbie, just few days back started learning CI 4. kind regards
@@ahmedharoon2740 You can create a view that contains the form, then include this in another view like this:
this would include the view app/Views/Users/form.php
@@dave-hollingworth many thanks ( again 😊) for your interest to guide us, definitely i will follow your instructions. kind regards
Wonder why the "Routes.php" file is SO different now in version 4.5.5??
THANK YOU😀
Hello sir. Does udmey course includes how to use pagination and third party library using composer? And does it had method to create admin panel and front end with same library? Thank you
Yes, the course covers pagination, CRUD, user admin and more. You can see the full list in the course description following the link under the video.
hi, I am working on Codeigniter 4.2.1 localhost as i placed default controller in URL it showing error "404 File not Found Can't find a route for 'get: /home'."
You need a getIndex method instead of just an index method (this is the new routing since 4.2)
did you not have to create routes for the tasks controller to work?
No, it uses autorouting (I know this isn't recommended now - I'll be updating this video when I get chance)
@@dave-hollingworth Can you help me to understand? Is it the new recommendation now to manually create routes for every controller?
@@PHP-MySQL I believe so, but I haven't had chance to look into it in detail yet
Thank you
Hi Dave, May I ask you if your Codeigniter course on udemy is up to date? I have already join 4 of your courses in udemy
Yes, I completely updated it recently. It's a couple of minor versions behind the latest release, but the content has been amended where necessary to reflect the changes.
hi, in Codeigniter 4, can i have an example of 2 tables master-detail like i can create in Oracle Apex where master is in Form style single record (in above region) and detail in Grd style multi-row (say tabular using datatable etc.), i failed to find yet, please help us. regards
Yes you could do that, but I'm not aware of any part of CodeIgniter that would do that for you automatically, you'd have to query the necessary data manually in a controller method
@@dave-hollingworth thank you sir for your reply. it is simple for seniors like you, i am a very beginner, even don't know about editable datatable how to's... so please please, give us a working example or a link from where i can understand what i want to achieve using CI4 + JS etc. regards
@@ahmedharoon2740 I do plan to make a datatables video at some point, but I can't say when I'll be able to do it - in the meantime I would suggest the official documentation and examples there, they're very good - try it with plain PHP first, then you can get a CI application to produce the same data
@@dave-hollingworth thanks sir, will wait for your guide, if it will be what i asked for i will be much grateful. regards
Is that Xubuntu you're using?
It is indeed, my desktop OS of choice :-)
hii sir i have doubt in php please clarify the doubt my doubt is :Creation of dynamic property CI_URI::$config is deprecated what the solution
You need to upgrade your CI version, or if it's not that, make sure you're not creating any properties dynamically in your PHP classes
+1 sub. Like you way of teaching, really helpful. I've been confused in the add a session title, what the difference when you hand code and use the session title. ?
I'm afraid I'm not sure what you mean, please could you explain further?
Hi. Why do i need to use public to access the home?
It's for security - it prevents access to the source code in a browser. More details here: codeigniter.com/user_guide/concepts/structure.html#public
@@dave-hollingworth but in your urls no public was added
@@TeacherRichPH You configure the web server so that the public folder is the root folder. So the file public/index.php for example would be available in the web root, e.g. localhost/index.php
@@dave-hollingworth got this.
Nice, thanks :)
It's really a nice tutorial, but the copy and pasting, I think isn't a good practice, even if you try to save time. Thank you!
Thank you for the feedback! I found that typing everything in did waste a lot of the viewer's time, so I try and highlight everything when inserting it using that method. Some like it, some don't. I haven't come up with an alternative that everyone likes yet!
@@dave-hollingworth Thanks for the reply :)
What about both methods? of course, not everyone likes writing HTML and CSS to make it look better, but imagine when we write notes, not that we will read them after, but writing helps us remember things!
Best regards ✌️
Can you do another discount from udemy thank you
Of course: the current best price is available here (available for the next five days): www.udemy.com/course/codeigniter-from-scratch/?couponCode=268D0BEA01A7D18DFF8D
@@dave-hollingworth , yey i already made a purchase from this link, its a really huge discount thank you so much
I prefer Laravel
Error 404