to all guru
i have this in my html file and it has a content of <a href="www.phpbuilder.com">link here </a> .
let us say the html filename is "myone.htm"
<?
$str=fopen("myone.htm","r");
$content="";
while (!feof($str)) {
$contents .= fread($str, 8192);
}
fclose($str);
how can i display only 'www.phpbuilder.com' instead of <a href="www.phpbuilder.com">link here </a>
The html file might contain more than one <a href="">