Ok I know I can do this via javascript but was wondering if I have say this
<HTML><HEAD><TITLE>Specifics of Bronica SQAi 150/4 PS </TITLE>
<?
include('producttopads.html');
and html processes php can I get the title...
Any ideas. Thanks Richard
feedback
|
| |||
|
feedback
|
|
The cleanest way to do it is this:
Then you can access the title using the variable $pageTitle. The other ways of doing it will require you to wait until after the page is loaded to access the title which isn't going to work for your purposes as I can tell. | |||
|
feedback
|
|
looks like just this will do it ob_get_contents | |||||||||
feedback
|
|
Have a look at DOMDocument API. It can parse HTML or XML documents for you. Example:
| ||||
|
feedback
|