[PHP] Capturing dynamic data and storing it into a variable

2002-05-06 Thread Mizery De Aria
I have stored the contents of a web page using: $src = implode(, file($url)); In the source contains: titleRandom title here/title What method can I use to store the title of the page into a variable? Keep in mind that the above string is part of an entire html document. -- PHP

Re: [PHP] Capturing dynamic data and storing it into a variable

2002-05-06 Thread Jason Wong
On Monday 06 May 2002 08:34, Mizery De Aria wrote: I have stored the contents of a web page using: $src = implode(, file($url)); In the source contains: titleRandom title here/title What method can I use to store the title of the page into a variable? Keep in mind that the above