hi all,
I have these html text:
<head><title>example</title></head>
<body><i>This is example 1</i>><i>This is example 2</i>><i>This is example 3</i>><i>This is example 4</i></body>
I try to use preg_match but my newbie script is going no where. How can i can pull out the content from between <i></i> so that i get:
This is example 1
This is example 2
This is example 3
This is example 4
Please help.
Rei Tan