is there anyway to return back to a command afterwards e.g.
<html> <title> <? /* from later on in the code */ echo $title; ?> </title> ..... <? /* create whatever the title will be here */ ?>
its quite a difficult one to explain lol
kinda heavy handed but you could use output buffering and do a [man]str_replace[/man] on title tag later on once the title has been set.
why not simply set the title earlier?
more curiosity than anything.
i was going to store it in mysql which i was going to query later, but i'll just query before and echo out the other stuff after.
thanks anyway i'll have a read of the manual! 😃