<?
$text = '<a href="index.php">İndex</a><br><a href="video.php">video</a><br>  ';
$text = str_replace("<br>","[br]",$text);
$text = strip_tags($text);
$text = str_replace("[br]","<br>",$text);
echo $text
?>