"ease" <ease@wanadoo.fr> schrieb:
> How PHP code can get <title> value from the container HTML page ?
Not without some very complex coding with output buffering.

May I suggest a simpler solution? The easiest way would be to define a
variable
$title = "Title of the page";
at the start of the document. Then you can write
<title><?php echo($title) ?></title>
and access the variable $title later in your PHP code.

Matthias