Thanks for the tutorial and projects. Very helpful Alex
@gce5173 жыл бұрын
What I like the most about this tutorial series is the absolute lack of nonsense. No distracting music or leaving us to guess what is happening behind the code. The fact that it is not scripted should make every CI4 newcomer feel relieved that we are not alone in our frustrations when we forget the little things. In fact, watching Alex patiently debug his code is perhaps one of the most important takeaways from his tutorials. Kudos to you, Alex! I know it is not easy to make these types of tutorials in a single go. THANK YOU!
@basilistigris6403 жыл бұрын
one more perfectly explained video on latest version of codeigniter 4, thank you Alex Lancer very profesional lessons
@Sushilkawad4 жыл бұрын
Good work Brother.
@ilhamramdhani47983 жыл бұрын
Awesome, thanks for the bonus.
@annarubio27084 жыл бұрын
Hi, Alex!! Thank you a lot for your tutorials!! really good help! I've generated CRUD encrypting some fields with codeigniter4, but I want to do a findAll() method and show it in a table inside a view and I don't know how to do it. without encrypting, it's easier making findall(), and then a foreach loop, but now I'm stacked because of the encryption of some fields. Thank you very much for you help!
@EvanAbaddon4 жыл бұрын
This is what I waiting for. Best Alex. Thank you!
@AlexLancer4 жыл бұрын
Yeah :) The heavy stuff. Takes some time to be created. But it's worth the time spent.
@EvanAbaddon4 жыл бұрын
@@AlexLancer Yap. So Alex, it will be support to multiple upload image?
@AlexLancer4 жыл бұрын
@@EvanAbaddon not out of the box. Because there is no standard way for image upload + storing. If you have ideas on how to implement it. Share with me and I will consider adding it to the library.
@EvanAbaddon4 жыл бұрын
@@AlexLancer For example we have table Products and the product have many images (id_album). and we have another table call Gallery or album it will relation with Products table.
@AlexLancer4 жыл бұрын
@@EvanAbaddon that's how I do it also.Will have to plan it and research a little bit.
@ahmedharoon27402 жыл бұрын
appreciate for great help to make our life easier and save the development time. looking for a dynamic menu (based on table(s)) and menu management which have At Least 4 levels of submenus, please if have time, guide us How To? i googled but still failed to find. regards
@fuzzyinteractive3 жыл бұрын
I'm totally stuck No matter what I do I still get this error: ErrorException Array to string conversion is there any other way to fix this other than using this code: if (is_array($form) && isset($form['redirect'])) return redirect()->to($form['redirect']); this method doesn't work ;(
@mixedartmedia78663 жыл бұрын
I had the same problem!
@devajohnson43664 жыл бұрын
Hi Alex, Thanks for this tutorial. It really helps me a lot I need Delete row option. Can you tell me how to do that?
@AlexLancer4 жыл бұрын
Hey, Deva, So far I am convinced that there is no reason to automate the deletion process. And the reason for that is that many deletions procedures might need some unique business logic. Therefore, it is more appropriate, in my opinion, to do it on your own, depending on your project needs. Just add a delete method into you controller function delete($id) and once deleted redirect back to the index method to display the table with existing items. Or create your own delete method in Crud.php file with all the required checks for your needs.
@devajohnson43664 жыл бұрын
@@AlexLancer Thank you so much for your response Alex. I saw some code relevant to delete option in Crud_core.php that's why I asked. I can do it by myself 😊.
@albertoiong68954 жыл бұрын
Hi Alex, Thanks for your sharing. I just finished part two of your tutorial. It seems that the search filter doesn't work with pagination, ie. search, click page number and search filter clear automatically. Is there anything i miss in the tutorial ? Note: After I finished with Part 3, I know that this is a know bug to be fixed.
@AlexLancer4 жыл бұрын
Exactly, it is something that needs to be figured out.
@vuphungduy5954 жыл бұрын
hi alex, when i compare password, it's cant match, $post[$hashIt] = password_hash($hashIt, PASSWORD_DEFAULT); password_hash($data['data']['u_password'], PASSWORD_DEFAULT); password_verify($data['u_password'], $user['u_password']); it not true, i set pw, and not login with my password. May you help me, thanks u.
@vuphungduy5954 жыл бұрын
i fixed bug. $post[$hashIt] = password_hash($post[$hashIt], PASSWORD_DEFAULT); for anyone need fix.
@ROGERIORIOS703 жыл бұрын
@@vuphungduy595 THANK YOU !!! Without this adjustment that you made, what happened was that it was recorded and the password was never found correctly. 12 hours searching....Thank You !
@dimasismu57382 жыл бұрын
hi, BRo............... the best teach for me thank... I need more for to learn so can you make a video about upload and download file manager for (pdf, img) or all ext include .apk ext.. thank bro
@sahidbis022 жыл бұрын
my datepicker does not work.. what did i miss
@Mrscandeia4 жыл бұрын
Show theater.. vlw...
@AlexLancer4 жыл бұрын
:)
@plain38083 жыл бұрын
$form .= ' ' . ($this->action == 'add' ? $this->form_title_add : $this->form_title_update) . ' ' . form_open('/'.$this->base . '/' . $this->table . '/' . ($this->action == 'add' ? 'add' : 'edit/' . $this->id)) . ' '; for some reason, this code doesn't redirect me to the /users/add or users/edit. but when I type the URL in the search bar the form loads. any tips on how to fix this? thankyou