man you'are the best teacher out here in youtube concerning PHP keep up the good work
@iNFiNiTY-yf3rk7 жыл бұрын
I've been searching this type of video for so long and all videos I find was terrible but man you made my day. You have got 1 more subscriber...
@iNFiNiTY-yf3rk7 жыл бұрын
Can you teach us how to make a script to download whole playlist videos. (I want to download your PHP series)
@clevertechie7 жыл бұрын
Thank you for subscribing I'm glad you liked the video. I'll see if I can figure out how to download playlist videos.
@yvannm77626 жыл бұрын
This is working for my project right now (even with PHP 7.2.x). Very cool ! Thank you
@augustuscolumbano7 жыл бұрын
Use this script with extra care though, remember copyright infringements and so on. This skill is a killer, would like to see more from you, I am a photographer who is super eager to learn PHP and I learned a lot from your channel.
@sweetday79235 жыл бұрын
good work, techi.
@H3AtreD4 жыл бұрын
Thank you so much for this, Is it possible to cache random images into a folder of a website? If the hosting server does not allow "fopen". It is very simple to cache images using "fopen", but with "curl" I couldn't get it done. Please do a tutorial of how to cache a number of random images "from diffrent websites" at the same time.
@zlatan49207 жыл бұрын
Amazing video! I'm working on it right now. I'm not sure yet what cURL means, but I will found out. Keep up the good work. Will update later.
@Ajaygg77 жыл бұрын
search W3school refrence
@AsadKhan-ve5kt6 жыл бұрын
If you are looking for the greatest service to get targeted traffic to your internet site, i recommend to try seowebsitetraffic. I am using it with a very good result. Simply type seowebsitetraffic in google or bing.
@kvgamecube7 жыл бұрын
Great Video! For others out there I encountered an error where nothing would show up on the screen as a response from my server. To fix this issue: simply make sure your url does not have [] it should either be [] or just [www] When copying bings url my computer, it defaulted to https. Hope this helps others out there!
@weslyloder14617 жыл бұрын
you sure did, thanks!
@DioArsya6 жыл бұрын
You can add 1 more line like this: curl_setopt($curl, CURL_VERIFY, false); Kinda like "CURL_VERIFY", you can search online for that "curl options https to false"
@AAJohnsonCODES-SKILLS6 жыл бұрын
You are the best.
@clevertechie6 жыл бұрын
Thanks boss! :)
@sprspr82375 жыл бұрын
I've made it easier in the way. But I can't download the images on my computer's custom location. if you have any solution please say. i'm tired to make this seystem
@sampathkumarmovva6 жыл бұрын
This video was awesome. but how to get more Url's using this method. Anyone please tell me
@dherendrachaudhary67286 жыл бұрын
can you please explain how to save these image in database
@masterjones62677 жыл бұрын
could you please create video to read text within image? i mean PHP OCR application.. thanks in advance
@Ajaygg77 жыл бұрын
wow this is badass
@hamzaahmad77106 жыл бұрын
on line 5 its says '$CURL' (T_VARIABLE)
@judahboy83575 жыл бұрын
you need a ; at the end of line above, i hooked the same issue .. 2months ago, but for anyone else maybe.
@rootclever28836 жыл бұрын
Buen video ;) esta expresion regular es para los nombres de las imagenes. expresion regular: [^\\:"?*|/]([\w-+%]+)\.(jpg|png|gif|jpeg).*$
@faysalahamed7947 жыл бұрын
Great! I wrote the script following your video. It worked fine :) I tried to make another script for downloading images from www.pexels.com/ here is the script github.com/iamfaysal/Scrape-pexels.com-PHP/blob/master/image_scrape.php the script is working well but the problem is it can only download the first few images (around 15) which load at the time of the page load. Rest of the images loads when someone scrolls the page down. I know it is a complex situation as the images loads after an ajax call, but if you have an easy solution, I will appreciate it. Thanks again for making this really useful video.