Seni daha fazla uğraştırmadan yazayım
Bu tür birçok pratik kodu (python,php,mysql ve ajax) yakında webmuster.net de bulabileceksiniz (mambo üzerinde bir template hazırlıyoruz bitince aktif olur)


------------------
bb.php
------------------
<?php

function bbceviri($text)
{

$text = str_replace("<", "&lt;", $text);
$text = str_replace(">", "&gt;", $text);

$text = nl2br($text);

$arama = " a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'";

$text = preg_replace("/\[bul\]([$arama]*)\[\/bul\]/", '<a href="http://www.iyi.web.tr/?arama=$1&type=web" target="_blank">$1</a>', $text);

return $text;
}
?>
------------------
oku.php
------------------
<?php
include("bb.php");

$metin = bbceviri("Webmuster [bul]php[/bul],python,ajax,[bul]mysql[/bul] pratik kodlar yakında hizmetinizdedir.");

echo $metin;

?>