نقل قول نوشته اصلی توسط go23user نمایش پست ها
html
با اچ تی ام ال که نمیشه
یا باید جاوا باشه یا php

این php

کد PHP:
<?php

$file 
fopen ("http://www.hostlinuxi.com/""r");
if (!
$file) {
echo 
"<p>Unable to open remote file.\n";
exit;
}
while (!
feof ($file)) {
$line fgets ($file1024);
/* This only works if the title and its tags are on one line */
if (eregi ("<title>(.*)</title>"$line$out)) {
$title $out[1];
break;
}
}
fclose($file);
echo
'<br/>'.$out[1];

?>