|
Posted by Andrew on 01/12/06 03:18
Hi Jukka,
if I'm following this correctly, hardwarereviewsdisplay.php
contains the following code at the top:
<?php
$file = 'hardware/'; //assuming you've already formatted the page=
variable
$handle = fopen($file,"r");
$file_text = fread($handle, filesize($file));
$temp_title = strstr($file_text, "<title>"); //everything from <title>
onwards
$title_end = strpos($temp_title, "</title>");
$title = substr($temp_title, 7, $title_end-7);
fclose($handle);
?>
<html>
<head>
</head>
<?php
print "<title>$title</title>"; //print intel670processor.htm's title in
hardwarereviewsdisplay.php
<?php
Which would read the <TITLE> tag from intel670process.htm?
cheers,
Andrew
[Back to original message]
|