Hi i am in situation when i want to have different descriptions for certain pages.... and i need this meta description set with data from the middle part of website so ...
PHP Code:
<?php ob_start();?>
<html>
<head>
<meta name="description" content="replace_this"/>
</head>
<body>
<?php $new_description='new_desc';?>
</body>
</html><?php ob_end_flush(); ?>
and... i was thinking about something like str_replace method or ... something like that...
What do you say and if somebody know how to do it i would appreciate code example :P thx