<?php$html = file_get_contents("http://www.example.com");$pos1 = strpos($html,"<title>")+strlen("<title>");$pos2 = strpos($html,"</title>")+strlen("</title>");$ttl = substr($html,$pos1,$pos2);echo $ttl;?>
For example.. we have a link GOOGLE.com how can I get title tag.. for example ?