|
I want to read a html page using php code and print content inside
<img >tag of the html page
<html >
<head>
<title>Test Document</title>
</head>
<body>
<img src="/test.jpg" width="640" height="480" alt="test" />
</body>
</html>
after reading html, I want to output
<img src="/test.jpg" width="640" height="480" alt="test" />
please help
|