Hi all.
Can someone help me with a script that can take a html-file as input (or any other file), and write out all the .jpg images listed in the file.
Thanks.
Assuming these images are within "img" tags: Use file_get_contents() to read the file into a string. Use str_pos() to find the "img" tags and to parse out the contents.
That should help you get the ball rolling with some code to come back with.