PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
<html>
<head>
//I do not copy all meta tags, javascripts, css, etc. here because they are too much
</head>
<body>
//Here are some tables and other tags but I do not copy them because of their size too
<a href="javascript: open_win('images.php?img=images/houses/b3ec038139m27saed706a436d958550d.jpg&alt=b3ec038139m27saed706a436d958550d.jpg',);" ><img alt="house" src="photos/thumbs/b3ec038139m27saed706a436d958550d.jpg" border=0></a>
//Other tags go here
</body
</html>
I need to extract 'b3ec038139m27saed706a436d958550d' from them.
I have fixed it. The problem was that when I tried to get the value it was printed more than once. I mean that it was something like this:
thevalue<a href="..."></a>...
thevalue has a specific length so I just cut the string and I had it done.