Hello... ...I'm trying to get exact text from external url ... Example http://89.248.173.11:8128/ (SHOUTCAST Page) ...and then to take only the name of the "Current Song:" ...Any help appreciated !!!
You should grab page's content (with file_get_contents or curl) and then use the following regular expression to get the song title. $pattern = '#<td[^>]+>.+?Current Song.+?</td><td>.+?<b>([^<]+)</b></td>#si'; PHP: tip: Add user agent header to file_get_contents.
curl for that url and get the content in a variable then extract your interest part from that. see php manual for curl.