THANK YOU SO MUCH!!!!!!! This is the most basic tutorial I was looking for! Straight to the point, no more any other other codes or whatnot that I don't even understand the purpose of cause, again, I still haven't grasped the basics which is what I came to the tutorial for. Such a huge help to actually get me started. Thank you!
I am a bit confused as to how this video is not at a million views. This is just what I have been searching for. I have been looking for something like this for many weeks. I am building a website that I want the client to update their own info but only when they log in. I wanted the post and update to be one in the same. You addressed that by making the update and read target the same content. Thanks a lot. This is going to be added to my subscription. If you get the time can you do a video on how to make the CRUD buttons like edit button and update buttons etc. appear only when a user log in. This will be the closest anyone can get to making a really simple straight forward CMS. Thanks again for this video. I just subscribe.
Hi Andy, I really appreciate the subscription, feedback, and kind words! It would help tremendously if you could share the video with others who my may thing would benefit from it :) I like your idea about building login functionality. I will add it to my list of future video ideas.
Very good work, Keep it up , You are better in explaining than most of the professionals because you include also the details of the logic in my opinion. Best regards from an Expat living in Germany
This is really great, the best video on crud, really appreciate how you literally went step by step with through explanations. Got yourself a new subscriber.
Man would love for you to do a complete no bs tutorial on PHP from start to finish including docker and apache or ngnix. The amount of resources on youtube covering these topics in depth are slim.
Tony, I have been looking everywhere for a video like this, so I could understand how to add a database to the stuff i was making with html, css and js This was so simple, thanks a lot!
So the comments about not passing unsanitized variables to mysql...how would you do this for a production environment? Do you have an updated video that demonstrates this?
Thank you it works properly, but I got an error of: Warning: Undefined array key "id" in C:\xampp\htdocs\practice_php ead.php on line 7 Warning: Undefined array key "id" in C:\xampp\htdocs\practice_php ead.php on line 7 by using of phpMyAdmin and Visual Studio.
It would be best practice to check if the key exists first before accessing it. This may make the warning go away: www.w3schools.com/php/func_array_key_exists.asp
@@TonyTeachesTechI got the same error too. As we get the id by $_GET[ 'id '] method, i think we cannot check that variable exist or not. I use following method, I store id in a variable named ID $ID = $_GET['id']; Then i used the same if statement as follows if (isset($ID)&& $row['StudentId'] ==$ID ) As i searching for an variable not exists It gave me the same error :( Undefined index: id in C:\wamp64\www\phpCrud\Files ead.php on line 6
maybe everyone have solved this issue, for those whom getting this error, we could check the value of $_GET['id'] array first (as Tony suggest) likethis : if(isset($_GET['id']) && $row['id'] == $_GET['id'])
@@Azyro777 hi Oryza, can you please explain your solution little more. I have the same issue as everyone else on the undefined array key "id" on line 7. the solution you proposed, are we suppose to use that if statement instead of the one Tony provided? Thanks.
I really appreciate your style of teaching, but at the same time, I don't think you should assume I would have vim installed etc. I am not comfortable in the terminal. I enjoy the approach but found myself tripping up when you used shortcuts & I wasn't sure if I should stay in the terminal of just switch to vscode. I've given you a sub either way as I could see myself learning from this channel. Thanks.
Yes sorry about the oversight with vim. It's my go-to, but I know a lot aren't familiar with it. You certainly have the right idea of using whatever text edit that you're most comfortable with. Thank you for your subscription Rory!
Thank you so much for this tutorial. It helped me a lot! I just have a question. How would you connect to a Javascript script for the frontend. Is it possible to do also in the simplest way? Best regards.
Great tutorial. Thank you. Everything works for me except it keeps giving me an error in the index.php when you put if ($row['id'] == $_GET['id']). It keeps saying that Notice: Undefined index: id. I do not know why. Can you help please?
Ive enjoyed the Vid on CURD , But I can't understand why when submitting form data the code from the create.php file is displayed in browser . is this a file permission or ownership causing this problem.
Will there be any code different when deploying to server using PHP8 ? I can run these code on a PHP5.4 Mercury Server, but either in localhost or Azure (PHP8.0), the frontpage loaded successfully, but then when I press "add", localhost return error 500, and Azure return 404....They just can't find the create.php script
Hi Tony, I followed your static tutorial on CRUD and it doesn't work for me. Did you miss a step in that where the form needed a manual POST? I know Elementor automatically does this but could you reply please. I am with Hostinger and I cant seem to get the database populated with results. Send me a PM if you want to help me please and we can setup a Zoom or similar to run through the code with you. Obviously I have expanded it for my site. Thanks in advance.
Very incentive video. thanks a lot. but i have a little problem despite copying the exact same code: the form disappears when I add read.php!? How and why, i can't explain. I just have the h1 & p on the browser. Please help, I really want to solve this!
Everything started fine then I added the update information and I get: Warning: Undefined array key "id" in D:\Document\Programming\Localhost\Test New\CRUD\API\Chrud 2 ead.php on line 10 I checked the typing over and over and I can't see the problem. I know so little about any other language except visual basic. this is the read.php file
why on me at 22:00 , when refresh me found error "Undefined array key "id" in .. ead.php on line 7 " i think because the _get can't get their variable, how do i fix it?
Uff, Tony, I get what you're doing, but passing unsanitized variables to mysql is a big no no, especially in a tutorial, where people don't know better. If you are not making the code secure, don't call it full, and add some disclaimer that this should not be used live, cause people will be pissed when their sites get hacked.
@@devanmarcal4928 We don't use mysqlI anymore, if you're using PHP, look into prepared statements. They are very easy to use once you 'get' them. Basically, you create a prepared SQL statement like 'select * from table where column=:id' or 'select * from table where column=?' (almost the same thing) and then, add the variables after like id="anything that's passed from the internet like 2;delete table" :) and PHP/mySQL will know that you want to add a variable and will escape it correctly no matter the input.
@@laci272 thanks for the information. As a begginer, I'm not quite familiar with all the terms, but I will study them to (try to) protect my data, but I think I got what you saying.
Thanks for actually taking time to explain what is happening rather than just playing background music and showing it all at 1.5x speed
I wish my univ teacher explained it this way instead of complex codes and advance topics. You're saving me from college! thanks a lot!
THANK YOU SO MUCH!!!!!!! This is the most basic tutorial I was looking for! Straight to the point, no more any other other codes or whatnot that I don't even understand the purpose of cause, again, I still haven't grasped the basics which is what I came to the tutorial for. Such a huge help to actually get me started. Thank you!
Great. Back to basics. Very well explained. With great frameworks like Laravel, we tend to forget the basics. Thanks.
Appreciate it Leon
Excellent tutorial on basic CRUD operation in PHP and MySQL. Very helpful introduction to CRUD. Thanks.
Glad it was helpful!
I am a bit confused as to how this video is not at a million views. This is just what I have been searching for. I have been looking for something like this for many weeks. I am building a website that I want the client to update their own info but only when they log in. I wanted the post and update to be one in the same. You addressed that by making the update and read target the same content. Thanks a lot. This is going to be added to my subscription. If you get the time can you do a video on how to make the CRUD buttons like edit button and update buttons etc. appear only when a user log in. This will be the closest anyone can get to making a really simple straight forward CMS. Thanks again for this video. I just subscribe.
Hi Andy, I really appreciate the subscription, feedback, and kind words! It would help tremendously if you could share the video with others who my may thing would benefit from it :)
I like your idea about building login functionality. I will add it to my list of future video ideas.
Excellent tutorial. Just what I was looking for among the vast amount of videos on this topic.
Thanks Nick!
Man thank you! Been looking everywhere for good tutorials that are simple and to the point.
You're welcome!
Everyone should watch this!
Thanks Patryk!
Very good work, Keep it up , You are better in explaining than most of the professionals because you include also the details of the logic in my opinion.
Best regards from an Expat living in Germany
Thank you very much Christian
Man you are a legend.
I watched soo many Tutorials, and finally, yours worked. Your explaination is damn good.
Best Regards from Germany :)
Thank you very much!!
@@TonyTeachesTech no problem!
This is really great, the best video on crud, really appreciate how you literally went step by step with through explanations. Got yourself a new subscriber.
Much appreciated!
Man would love for you to do a complete no bs tutorial on PHP from start to finish including docker and apache or ngnix. The amount of resources on youtube covering these topics in depth are slim.
Will consider it. I already have a bunch of apache and nginx setup videos. No php or docker yet
Excellent work! after so many months it is still very useful to go back to the basic
Thanks!
Master you are a genius 🙌🙌
thankyou tony. Simple explanation to understand for a noob like me.
wtf why do u have this low amount of likes and subs? u deserve like 100K+
Really appreciate that 🙏
Tony, I have been looking everywhere for a video like this, so I could understand how to add a database to the stuff i was making with html, css and js
This was so simple, thanks a lot!
You're very welcome Josh
Really thaaaaaaaaaaaaaaaaaaaaaaaaaaank you
Explain step by step and simplify the information
You are most welcome
So the comments about not passing unsanitized variables to mysql...how would you do this for a production environment? Do you have an updated video that demonstrates this?
Thank you it works properly, but I got an error of:
Warning: Undefined array key "id" in C:\xampp\htdocs\practice_php
ead.php on line 7
Warning: Undefined array key "id" in C:\xampp\htdocs\practice_php
ead.php on line 7
by using of phpMyAdmin and Visual Studio.
It would be best practice to check if the key exists first before accessing it. This may make the warning go away:
www.w3schools.com/php/func_array_key_exists.asp
I am getting the same error, I checked the "read.php" file for the hidden input, it's there, still not working...>>echo '';
@@TonyTeachesTechI got the same error too. As we get the id by $_GET[ 'id '] method, i think we cannot check that variable exist or not. I use following method,
I store id in a variable named ID
$ID = $_GET['id'];
Then i used the same if statement as follows
if (isset($ID)&& $row['StudentId'] ==$ID )
As i searching for an variable not exists It gave me the same error :(
Undefined index: id in C:\wamp64\www\phpCrud\Files
ead.php on line 6
maybe everyone have solved this issue, for those whom getting this error, we could check the value of $_GET['id'] array first (as Tony suggest) likethis : if(isset($_GET['id']) && $row['id'] == $_GET['id'])
@@Azyro777 hi Oryza, can you please explain your solution little more. I have the same issue as everyone else on the undefined array key "id" on line 7. the solution you proposed, are we suppose to use that if statement instead of the one Tony provided? Thanks.
Congrats!
You got a new subscriber!!
Thanks for subbing! :)
I really appreciate your style of teaching, but at the same time, I don't think you should assume I would have vim installed etc. I am not comfortable in the terminal. I enjoy the approach but found myself tripping up when you used shortcuts & I wasn't sure if I should stay in the terminal of just switch to vscode. I've given you a sub either way as I could see myself learning from this channel. Thanks.
Yes sorry about the oversight with vim. It's my go-to, but I know a lot aren't familiar with it. You certainly have the right idea of using whatever text edit that you're most comfortable with. Thank you for your subscription Rory!
thank you my man.
You're welcome!
Thank you so much!
You're welcome!
Thank you!!! It helped me a lot!
Glad it helped!
Great tutorial
Thank you so much for this tutorial. It helped me a lot! I just have a question. How would you connect to a Javascript script for the frontend. Is it possible to do also in the simplest way? Best regards.
You can easily include a javascript file in your HTML page www.w3schools.com/js/tryit.asp?filename=tryjs_whereto_external
Excelent !!! very well explained
Thanks!
Man, thank you very much for this! Seriously
You bet!
Great tutorial. Thank you. Everything works for me except it keeps giving me an error in the index.php when you put if ($row['id'] == $_GET['id']). It keeps saying that Notice: Undefined index: id. I do not know why. Can you help please?
Do you have the hidden input tag on line 12 of read.php which defines "id" for POST and GET requests?
_echo '';_
The same problem here, bro. Did you solve it? Thanks
@@TonyTeachesTech I have that tag and it is still showing up
I found the fix
if(isset($_GET['id']) && $row['id'] == $_GET['id'])
@@jkastle Thank you!
Thanks Tony.. more, more, more pls..
You got it! More to come :)
Great! Thank You so much
You're welcome!
Ive enjoyed the Vid on CURD , But I can't understand why when submitting form data the code from the create.php file is displayed in browser . is this a file permission or ownership causing this problem.
Will there be any code different when deploying to server using PHP8 ? I can run these code on a PHP5.4 Mercury Server, but either in localhost or Azure (PHP8.0), the frontpage loaded successfully, but then when I press "add", localhost return error 500, and Azure return 404....They just can't find the create.php script
Hi Tony, I followed your static tutorial on CRUD and it doesn't work for me. Did you miss a step in that where the form needed a manual POST? I know Elementor automatically does this but could you reply please. I am with Hostinger and I cant seem to get the database populated with results. Send me a PM if you want to help me please and we can setup a Zoom or similar to run through the code with you. Obviously I have expanded it for my site. Thanks in advance.
This was solid
Thanks Caleb
hi, i am beginner to this php and I just want to ask if I can use phpmyadmin? or not?
Definitely!
Very incentive video. thanks a lot. but i have a little problem despite copying the exact same code: the form disappears when I add read.php!? How and why, i can't explain. I just have the h1 & p on the browser. Please help, I really want to solve this!
Hmmm, I'm not sure why that would happen either
Might be my mistake, checking line by line just to be sure.
I use the firefox developer edition browser, but it's also the same on chrome....
Everything started fine then I added the update information and I get:
Warning: Undefined array key "id" in D:\Document\Programming\Localhost\Test New\CRUD\API\Chrud 2
ead.php on line 10
I checked the typing over and over and I can't see the problem. I know so little about any other language except visual basic.
this is the read.php file
how to make popup that ask user the confirmation when user want to delete data? thanks
You can do this with a JavaScript alert or confirm dialog box. I'll have a video about this soon
@@TonyTeachesTech ok sir. thanks for the respond.
why on me at 22:00 , when refresh me found error "Undefined array key "id" in ..
ead.php on line 7 " i think because the _get can't get their variable, how do i fix it?
Were you able to fix this?
6:59 Correction: That argument is not the table's name but that is the database name to which the website will connect.
Yes, you are right! Thanks :)
Uff, Tony, I get what you're doing, but passing unsanitized variables to mysql is a big no no, especially in a tutorial, where people don't know better. If you are not making the code secure, don't call it full, and add some disclaimer that this should not be used live, cause people will be pissed when their sites get hacked.
I understand your point, and it's very valid! I can add a disclaimer to the description
Hey Laci, what do u suggest to do? How to 'sanitize' the variables?
@@devanmarcal4928 We don't use mysqlI anymore, if you're using PHP, look into prepared statements. They are very easy to use once you 'get' them. Basically, you create a prepared SQL statement like 'select * from table where column=:id' or 'select * from table where column=?' (almost the same thing) and then, add the variables after like id="anything that's passed from the internet like 2;delete table" :) and PHP/mySQL will know that you want to add a variable and will escape it correctly no matter the input.
@@laci272 thanks for the information. As a begginer, I'm not quite familiar with all the terms, but I will study them to (try to) protect my data, but I think I got what you saying.
Big deal, it's free training, get over it.
i get undefined index id on the read.php file any help?
That's definitely a viable option
also my save button doesnt apply the changes even tho i have the same code
It should if you have the same code
@@TonyTeachesTech its alright i fixed it , i need to use crud for an assignment of my college , i ended up figuring it out
@@JuanitO_o How did you fix it?, I have that problem.
@@jonathanruiz397 i have a friend who has finished his degree and i got no clue what he did to help me
why my textbox become shrink when i click update button?
What?
@@TonyTeachesTech sorry my mistake. i miss one tags in my code and thanks for the reply 🥳
Hello Tony can i get your email to reach out for more help?
I don't offer personal consulting, but for general questions, you can reach out to me on my contact form tonyteaches.tech/contact/