Hey dude, thanks for the video. I have a problem when I try to upload an image. what happens is that the image rotates 90 degrees to the left and I can't find a way to prevent that from happening. I hope you can help me, thank you very much.
This was really helpful. I was struggling with another way to upload an image from another tutorial I was doing and images were not displaying but with your code it works perfectly.
yes yes yes yes, thanx so much u have simplified my task , this tutorial has seriously worked form me, am fully sorted now, thanx so much in deed. i will b waiting for more lessons
Gal, this i can relate with, but thing is some people will not get it, like its strange and doesn't make sense to them. Honestly i have few friends, and my friends have shown me support in their own ways🤗❤️😇. But i get your point dear. Thanks for sharing
Great video! I have got few questions: 1) Isnt that code exposed to MySQL Injection? How could I use prepared parametrized statements in your code? 2)How to show the images upload into a table? 3)How can I manage to rename the images I upload matching them to the AutoIncrement ID that mysql assigns to them?
Hello bro, I am going to do a project. Now I am design phase of it I want to know weather if we upload a file of word or xl or ... to a database(MySql) and can we access the file and it's related data using php. Please bro need a reply.
thank you:question ; if user insert image into database, will it also be inserted to uploads file that we also store like in the video ? or directly to dabatase without inserting into your file in your pc and then can be display in the page ?, because when i insert image,it's url also comes uploads, and it can be some user that want be upload image from their mobile,will it be work withour problem ? or we need to do another system ?
To upload a file follow this two steps. 1. the image/file/video must be uploaded to the server. in this case we used my pc as server. 2. store the file location in to the database .
Hello. Good work .. I have a qus. .... Jis trh se online examination form me Photo aur sign alg alg upload and display hota h wo kese hoga .... Plz samjhao
Correct if im wrong. I think you just upload the new file name to the database? not the file it self. When you delete the image in the upload folder is it still you can display it ??
Thanks for this video. A couple of question for you though. Will this allow for very large files to be uploaded like videos? Can you upload from a mobile phone to the website using this code?
i have a problem becouse my pictures does not show its just show picture logo and squer around how can i fix that and how can i incrise suported picture file size
Hello, I have a question. Is it possible to generate a link after uploading the image? What I mean is I would like to upload a image to the database and have a link generated so when I go to that link it will display that image and nothing else?
Thanks for that. I have a question about the returned array at 5:25. Depending on which image file I select to upload I only get the name returned with a 1 at error rather than the zero returned with other images. The file throwing the 1 is a bog standard photo but I do not get any data in [type] => [tmp_name] => because of the [error] => 1 but I cannot work out why. Any ideas please? Thanks again
i have a login system and i want to insert the profile image inside the user table where there is the user information like the id how can i do this? cuss i have tried and when i upload it keeps adding new id's thanks :)
Hello friend, how can I use this code to upload 3 pictures directly from webcam android? I have 3 input to pictures and 1 to text, and 1 to username, can you help me?
I got some errors, it's says "Warning: mysqli_connect(): The server requested authentication method unknown to the client [caching_sha2_password] in C:\xampp\htdocs\image-upload-php-and-mysql-main\db_conn.php on line 9 Warning: mysqli_connect(): (HY000/2054): The server requested authentication method unknown to the client in C:\xampp\htdocs\image-upload-php-and-mysql-main\db_conn.php on line 9 Connection failed! "
hey bro I'm at arround 11th minutes, I created a file 'uploads' and I can upload a jpeg file from website in this 'uploads' file (thanks to you), but when the image comes in file, it doesn't displaying, its saying 'maybe I don't have permission', do you know why is happening?
@@CodingwithElias I copied the the code and still same problem. Those uploaded images has the permission to read only though and it wont allow me to add permission for write and execute. Is this the issue or something else
I had the same problem when I was using Kali Linux for this project. these are the steps I took. 1) open console in the uploads folder 2)put sudo su command 3) type this command chmod ugo+rwx uploads now you have applying read write and execute permissions for all users. should work now!
Info for Linux users. For me in beginning not working when I write my own code. :( After than I take source code from github and its not working :( After than I figure out. :) I must change permissions for folders where I want upload pictures. :) When I allow "Write " than it works :)
getting a error : Uncaught TypeError: strtolower(): Argument #1 ($string) must be of type string, array given in C:\xampp\htdocs\project\calender.php:55 Stack trace: #0 C:\xampp\htdocs\project\calender.php(55): strtolower(Array) #1 {main} thrown in
ITS WORKING OMG THANK YOU :( I PASSED MY EXAM BECAUSE OF YOU!
Same here man. Thx for the tutorial
It was one silent tutorial but I needed it ....have been stalling for years to do this ....I did it thanks men💪
same,you want code that does everything you want
11:33 Insert Database (Creating connectiondb.php)
12:30 Connection to the database.
► Procedural style: mysqli_connect(host, username, password, dbname, port, socket)
► Object oriented style: new mysqli(host, username, password, dbname, port, socket)
Hey dude, thanks for the video. I have a problem when I try to upload an image. what happens is that the image rotates 90 degrees to the left and I can't find a way to prevent that from happening. I hope you can help me, thank you very much.
This was really helpful. I was struggling with another way to upload an image from another tutorial I was doing and images were not displaying but with your code it works perfectly.
This is the BEST tutorial. Easy to follow and it works 100%! Thank you so much for this!
Great to hear!
@@CodingwithElias I may have missed a few things, why does the code save into the Pc after upload?
Hi ela....I have big respect for you.....because I are real programer and UA-camr.....
You don't hide ur knowledge ur source code.
Thank you so much 🙂
Thankyou very much lots of help bro, i seen lots of videos in UA-cam but not work but this video is awesome keep going bro ..😊❤
yes yes yes yes, thanx so much u have simplified my task , this tutorial has seriously worked form me, am fully sorted now, thanx so much in deed. i will b waiting for more lessons
Finally something that just works. Thanks a lot!
Gal, this i can relate with, but thing is some people will not get it, like its strange and doesn't make sense to them. Honestly i have few friends, and my friends have shown me support in their own ways🤗❤️😇. But i get your point dear. Thanks for sharing
Hi, you saved my life. Thank you so much for this clear and straightforward video, subscribed!
Thanks for the tutorial, was just looking for something like this to help me out.
nice and thanks. with your effort i have succeeded.
Keep it up
Bros i really thank you a lot for this video you put up, it is amazing and i appreciate it
Great video! I have got few questions:
1) Isnt that code exposed to MySQL Injection? How could I use prepared parametrized statements in your code?
2)How to show the images upload into a table?
3)How can I manage to rename the images I upload matching them to the AutoIncrement ID that mysql assigns to them?
I'll make video about that thanks
You are really an amazing programmer .
Thank you, really it is very good and very clear 👍👍👍👍👍👍👍👍
A perfect tutorial ! you're the best, all the luck !
Tnq so muchhhhh 😭😭😭
Wow That's Amazing
Very nicely explained.Thanx
Really awesome u solved soo many problems
Thanks a lot this really helps me to do my project 👍
thanks for helping me
Thank you so much bro! It works
Thank you buddy for that it helps lot try to add your voice it will be easy for us to understand
I will try my best
omg thankyou so much!! im gonna try this with our assignment its due in 2days skhdskfhd thanks
silent but great!!!!thank you very much
Thank you so much. Can you please post get and post method difference
Okay, thanks
terimakasih banyak atas tutorialnya
One of best
Thank you very much❤❤
Thank you!
Hello bro,
I am going to do a project. Now I am design phase of it I want to know weather if we upload a file of word or xl or ... to a database(MySql) and can we access the file and it's related data using php.
Please bro need a reply.
Check out my new Video "Online Book Store - Full PHP & MYSQL Project - Part 1
" related to Your question
Thank you for the reply
good video, very helpful! Keep it up.
Thanks bro
Welcome
thank you:question ; if user insert image into database, will it also be inserted to uploads file that we also store like in the video ? or directly to dabatase without inserting into your file in your pc and then can be display in the page ?, because when i insert image,it's url also comes uploads, and it can be some user that want be upload image from their mobile,will it be work withour problem ? or we need to do another system ?
To upload a file follow this two steps.
1. the image/file/video must be uploaded to the server. in this case we used my pc as server.
2. store the file location in to the database .
Hello.
Good work .. I have a qus. ....
Jis trh se online examination form me Photo aur sign alg alg upload and display hota h wo kese hoga .... Plz samjhao
thanks for the tutorial brother.
From team 6 with love
Thank you love 💞💖💖💖💞💖💖💞🤗🤗
so helpful thx 🌹👏
Hello can you make a tutorial that if you click those picture it will redirect to another file? By the way this tutorial is great💕
Yeah, sure. You can just easily use a tag to do that. Thanks 👍
Thanks a lot😍 bro
Does it possible to upload cnic copy instead a pic for better security??
simple and easy thanks alot
Thanks for this great tutorial!
You're very welcome!
YOU ARE A SAVIOUR
Thanks man 🧡
Happy to help
Correct if im wrong. I think you just upload the new file name to the database? not the file it self. When you delete the image in the upload folder is it still you can display it ??
yeah.. but you can't upload file into database. instead store file name and extension in the database
Thanks for this video. A couple of question for you though. Will this allow for very large files to be uploaded like videos? Can you upload from a mobile phone to the website using this code?
yes for sure, check out my video called, how to upload video using PHP and MySQL
thank you
The tutorial is great. I would like to know how to delete a picture once it's uploaded? Thank you in advance.
I'm making a tutorial on online book store. You question will be answered on that video. Thanks
well done brother
Thanks a lot this helps a lot
Glad it helped
Thanks a lot
Img with extension very nice
Hey I would like to ask how to do editing? I want to upload a new picture and delete the old one
Great one !
BEST!
Good
thanks so much can you explain about the header('location:index.php?error=$em');
Just making redirect.
Redirect to index .php and passing query error message
Thanks
very nice
thank you for explaining each every step
My pleasure 😊
Sir i have a doubt,that uploaded img will be showed in other users id
silent but effective!
Amazing
i have a problem becouse my pictures does not show its just show picture logo and squer around how can i fix that and how can i incrise suported picture file size
what can I used in PDO method instead of ( mysqli_num_rows ) ??
check out my PDO projects in this channel
YOU SAVE ME FROM HELL THANKS ELIASSSSSSSSSS
Thank u so much u saved my life lol
good
Hello, I have a question. Is it possible to generate a link after uploading the image? What I mean is I would like to upload a image to the database and have a link generated so when I go to that link it will display that image and nothing else?
Nice
Thanks for that. I have a question about the returned array at 5:25. Depending on which image file I select to upload I only get the name returned with a 1 at error rather than the zero returned with other images. The file throwing the 1 is a bog standard photo but I do not get any data in [type] =>
[tmp_name] => because of the [error] => 1 but I cannot work out why. Any ideas please? Thanks again
checkout the source code under the description
@@CodingwithEliasgive me the source code at one paste here i cant figure it out in description
can u pls tell me how to check the image dimension
u have given the validation of image size...
I too need to check image dimension how to do that
$image_info = getimagesize("image.png");
print_r($image_info);
@@CodingwithElias thanks🎉
Friend you can upload 5 to 6 images with the same self-increasing id
i have a login system and i want to insert the profile image inside the user table where there is the user information like the id how can i do this? cuss i have tried and when i upload it keeps adding new id's thanks :)
I'll make a video about that, thanks
thaaaaaaaaaaaaaaaaank you
Code paste kr doooo😭
how to fetch image form database relevent unique image to diplay, example - profile picture
Check out my chat app tutorial, all explained
Hi Sir! I want to add the name of the person below the picture. how do I want to add in the upload.php section sir? Please help me sir. Urgent .
check out my new video called how to upload profile picture
this code sounds lenthy for beginners
how much is the storage limit of files that can be uploaded in mysql
bro t at 11:09 i cant see the files that i uploaded in my uploads folder , i am using mac . can you help me bro?
Hello friend, how can I use this code to upload 3 pictures directly from webcam android? I have 3 input to pictures and 1 to text, and 1 to username, can you help me?
I got some errors, it's says
"Warning: mysqli_connect(): The server requested authentication method unknown to the client [caching_sha2_password] in C:\xampp\htdocs\image-upload-php-and-mysql-main\db_conn.php on line 9
Warning: mysqli_connect(): (HY000/2054): The server requested authentication method unknown to the client in C:\xampp\htdocs\image-upload-php-and-mysql-main\db_conn.php on line 9
Connection failed! "
Bro, if I do it on WAMPSERVER instead of using XAMPP, where should I create the uploaded file?
on your root directory/folder/ where you create index. php file
do i need to open 21 port for ftp or?
Thank u video for me sir
Cloud you tell me about parameter error,
Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, bool given in C:\xampp\htdocs\upload-image\view.php on line 14
--------
View
←
Updated your server to php 7 or greater
And mysql to mysqli support version
How do you make it so that the image uploaded is on the same page as the upload button, not on another page?
make action="" copy past the code from the other page
Heii great video but how can I make a userid for the upload ?
Check out my video called " how to upload profile picture"
hey bro I'm at arround 11th minutes, I created a file 'uploads' and I can upload a jpeg file from website in this 'uploads' file (thanks to you), but when the image comes in file, it doesn't displaying, its saying 'maybe I don't have permission', do you know why is happening?
Hello, I'm experiencing the same problem as you. Could you please tell me how you solved it?
isset($_FILES['my_image']) is not working for me :/ If im adding image, there is no Hello. Do you know why?
maybe you you forget to give a name for the input. like name="my_image" or enctype="multipart/form-data"
The files are uploaded and seen in uploads folder, but those images wont display on the webpage. Can you help please?
Checkout the source code under the description
@@CodingwithElias I copied the the code and still same problem. Those uploaded images has the permission to read only though and it wont allow me to add permission for write and execute. Is this the issue or something else
@@Anuj.Subedi maybe this is your OS or server problem
I had the same problem when I was using Kali Linux for this project. these are the steps I took. 1) open console in the uploads folder 2)put sudo su command 3) type this command chmod ugo+rwx uploads
now you have applying read write and execute permissions for all users. should work now!
thanks for tutorial but my file not show in folder but in database is show, how i fixed it?
Checkout the code under the description
Is there any ways to upload an image without using and formdata() function and just use a post
I don't think so
Info for Linux users. For me in beginning not working when I write my own code. :( After than I take source code from github and its not working :( After than I figure out. :) I must change permissions for folders where I want upload pictures. :) When I allow "Write " than it works :)
Good tip!
After uploading the video, how can i make the video to be liked and commented on by other users
getting a error : Uncaught TypeError: strtolower(): Argument #1 ($string) must be of type string, array given in C:\xampp\htdocs\project\calender.php:55 Stack trace: #0 C:\xampp\htdocs\project\calender.php(55): strtolower(Array) #1 {main} thrown in