I'm picking up information from a remote website and I'm stuck with this bit of html:
<div>
<a onclick="javascripthere" href="#">
<img width="110" height="160" alt="" src="imageurlhere">
{variable sized string}
</a>
<br>2012/01/10 17:35:20<br>
<img alt="{variable sized string}" src="imageurlhere">
</div>
From the above html i need to pick up the 2 "{variable sized string}". They can be any type of character (a-zA-Z0-9 and spaces / other characters), and i can't figure out what kind of regex or php to use to get those two strings.
Any suggestions?