صفحة 1 من 1

????? ????? ?????

مرسل: الأحد مارس 09, 2008 1:10 pm
بواسطة ostora
?????? ????? ????? ????


???? ??? ?????? ?????? ??????
?? phpbbarabia
???????? ?????? ????? ?? ??? ????????? ???????? ?? ?????? ?????? ?????
?????? http://www.onlyscout.com/f" onclick="window.open(this.href);return false;

??????? ??????
??????? ???? ?????? ??????? ??????? ?? ????? ????? ? ????? ?????? ???? ????? ? ...... ???? ??? ??? ???? ???? ?? ???? ??? ????

??????? ???????
??????? ???? ?????? ?????? ??????? ??? ??? ??? ?? ??? ????? ??????

????? ??????
????? ???? ?????? ?????? ???? ???? ??? ????? ?? ??????? ????? ???? ???????
http://www.onlyscout.com/f/index.php=11 ... dca2d5b9f1" onclick="window.open(this.href);return false; ????
??????? ???? ?? ??? ?? ?? ??? ????? ???? http://www.onlyscout.com/f" onclick="window.open(this.href);return false; ???? ?? ?? ?????? ?????? ?? ???? ?? ??? ?????? ??????

??????? ???????
???? ?? ???? ????? ??????? ?? ???? ?? ??? ????? ???

????? ????? ?????

مرسل: الأحد مارس 09, 2008 1:19 pm
بواسطة ostora
??????? ???????
???? ????? ????? ??????? ??????? ??? ??? ???? ????? ?? ?? ???? ?? ???? ????? ?????? ?? ?????? ???? ????? ???

???????

??????? ???????
???? ???? ?????? ???? ???? ???? ??? ????? ???? ?? ????? ?????? ??? ????

????? ????? ?????

مرسل: الاثنين مارس 10, 2008 2:17 am
بواسطة Stylish
1- ??????? ????? ??? UTF-8 , ???? ??? ????? ?? ????? ??? ?? ???? ????? ???? ??????? UTF-8 ..
???? ?? ?? ????? ??????? ????? ?????? UTF-8 ? ??? ??? ??? .. ?????? ???? ????? ?????? ??? ??? Notepad++

2- ???? ?? ?????? ???? ??? ????? ??????? ???? ?????? .. ??? ???? ??????? ???? ??? ???? ????? ???? ?? ???????? ..

3- Sid (???????) ? ?? ???? ???? ????? ?? ??????? , ??? ????? ?? ?? ?? ??? ????? ????? .. ????? ?? ??????? ?????? ???? ?????? ??????? ..

4- ???? ?? ????? ???????? ???????? ?????? ???? ??? ??? ??? ????? , ???? ???? ????? phpBB3

5- ???? ?? ????? ????? ???? ???? ..

6- ???? ????? ?? ??? ???? ?????? ? ???? ???? ??? ?? ?????? ???????? ???? ?? ??? ????? ???? ?????? .. ???? ?? ??? ??????? ????????..


???????? ...

????? ????? ?????

مرسل: الأربعاء مارس 12, 2008 6:26 am
بواسطة shinigami
ostora كتب:??????? ???????
???? ????? ????? ??????? ??????? ??? ??? ???? ????? ?? ?? ???? ?? ???? ????? ?????? ?? ?????? ???? ????? ???

???????


??????? ?? ??? ?? ????? ????? ???? ? ??? ??? ?????? ?? ??bbcode ? ? ?? ?????? ?? ??????? ????????? ? ?????? ???? ?????? ?????? ?????? ?????? ??? ??? ??? ??????? ? ???? ??? ???? ??? ???? ?? ??? ?????? ???? ??bbcode ? ?????? ?? ??????? ??? ???? html ? ??? ???? ??? ????? ??????? ???? ???? ?? ??? ????? ????? ????? ...

??? ????? ??????? ??????? ?? ???? ??? ??common.php ? ??? ??? ????? ??????? :
???? ?? :

كود: تحديد الكل

//HotEditor MOD
function BBCodeToHTML($text){
	$patterns[] = "#  #si";
	$replacements[] = '  ';

	$patterns[] = "#\t#si";
	$replacements[] = '     ';

	//Support Table here
	$patterns[] = "#\[table\]#si";
	$replacements[] = '<table style="border-collapse: collapse;border-spacing: 0px;border: 1px solid #6CAFF7;background-color: #F4F4F4;width:98%;font-family:Verdana,Arial,Sans-Serif,Tahoma;font-size:12px;color: black;">';
	$patterns[] = "#\[\/table\]#si";
	$replacements[] = '</table>';
	$patterns[] = "#\[td\]#si";
	$replacements[] = '<td style="height:25px; border: 1px solid #6CAFF7">';
	$patterns[] = "#\[\/td\]#si";
	$replacements[] = '</td>';
	$patterns[] = "#\[tr\]#si";
	$replacements[] = '<tr>';
	$patterns[] = "#\[\/tr\]#si";
	$replacements[] = '</tr>';

	$patterns[] = "#\[(sub|sup|strike)(.*?)\]#si";
	$replacements[] = '<$1>';

	$patterns[] = "#\[\/(sub|sup|strike)(.*?)\]#si";
	$replacements[] = '</$1>';

	$patterns[] = "#\[font=(.*?)\]#si";
	$replacements[] = '<span style="font-family:$1;">';

	$patterns[] = "#\[highlight=(.*?)\]#si";
	$replacements[] = '<span style="background-color:$1;">';

	$patterns[] = "#\[\/(font|highlight)(.*?)\]#si";
	$replacements[] = '</span>';

	$patterns[] = "#\[hr\]#si";
	$replacements[] = '<hr class=HR_Color>';

	$patterns[] = "#\[(left|center|right|justify)\]#si";
	$replacements[] = '<div align="$1">';

	$patterns[] = "#\[\/(left|center|right|justify)\]#si";
	$replacements[] = '</div>';

	$text = preg_replace($patterns, $replacements, $text);

	return $text;
}
??????? ???:

كود: تحديد الكل

function BBCodeToHTML($text){
	$patterns[] = "#  #si";
	$replacements[] = '  ';

	$patterns[] = "#\t#si";
	$replacements[] = '     ';

	//Support Table here
	$patterns[] = "#\[table\]#si";
	$replacements[] = '<table class="tablebg" cellspacing="1" width="100%">';
	$patterns[] = "#\[\/table\]#si";
	$replacements[] = '</table>';
	$patterns[] = "#\[td\]#si";
	$replacements[] = '<td class="row2" colspan="2" align="center"><span class="gensmall">';

	$patterns[] = "#\[\/td\]#si";
	$replacements[] = '</span></td>';
	$patterns[] = "#\[tr\]#si";
	$replacements[] = '<tr>';
	$patterns[] = "#\[\/tr\]#si";
	$replacements[] = '</tr>';

	$patterns[] = "#\[img(.*?)\](.*?)\[\/img(.*?)\]#si";
	$replacements[] = '<img src="$2" alt="" />';

	$patterns[] = "#\[(indent|blockquote)\]#si";
	$replacements[] = "<blockquote>";

	$patterns[] = "#\[\/(indent|blockquote)\]#si";
	$replacements[] = "</blockquote>";

	
	$patterns[] = "#\[(sub|sup|strike)(.*?)\]#si";
	$replacements[] = '<$1>';

	$patterns[] = "#\[\/(sub|sup|strike)(.*?)\]#si";
	$replacements[] = '</$1>';

	
	$patterns[] = "#\[size=85(.*?)\]#si";
	$replacements[] = '<span style="font-size: 8pt; line-height:125%">';
	$patterns[] = "#\[size=100(.*?)\]#si";
	$replacements[] = '<span style="font-size: 10pt; line-height:125%">';
	$patterns[] = "#\[size=120(.*?)\]#si";
	$replacements[] = '<span style="font-size: 12pt; line-height:125%">';
	$patterns[] = "#\[size=130(.*?)\]#si";
	$replacements[] = '<span style="font-size: 14pt; line-height:125%">';
	$patterns[] = "#\[size=150(.*?)\]#si";
	$replacements[] = '<span style="font-size: 16pt; line-height:125%">';
	$patterns[] = "#\[size=170(.*?)\]#si";
	$replacements[] = '<span style="font-size: 18pt; line-height:125%">';
	$patterns[] = "#\[size=200(.*?)\]#si";
	$replacements[] = '<span style="font-size: 24pt; line-height:125%">';

	$patterns[] = "#\[font=(.*?)\]#si";
	$replacements[] = '<span style="font-family:$1;">';


	$patterns[] = "#\[color=(.*?)\]#si";
	$replacements[] = '<span style="color:$1;">';

	$patterns[] = "#\[highlight=(.*?)\]#si";
	$replacements[] = '<span style="background-color:$1;">';

	$patterns[] = "#\[\/(font|highlight|color|size)(.*?)\]#si";
	$replacements[] = '</span>';

	$patterns[] = "#\[hr\]#si";
	$replacements[] = '<hr class=HR_Color>';

	$patterns[] = "#\[(left|center|right|justify)\]#si";
	$replacements[] = '<div align="$1">';

	$patterns[] = "#\[\/(left|center|right|justify)\]#si";
	$replacements[] = '</div>';

	$text = preg_replace($patterns, $replacements, $text);

	return $text;
}
???? ???? ???? ????? ?????? ????? ?? ??????? ?????? ... ???? ??? ???? ????? ??????? ??????? ? ??? ??? ??? ?? ??? ?????? ???? ?????? ????? ??????? ??????

????? ????? ?????

مرسل: الخميس مارس 13, 2008 1:21 pm
بواسطة ostora
??? ????? ???? ???? ??? ????

????? ???? ???

------------------
1- ??????? ????? ??? UTF-8 , ???? ??? ????? ?? ????? ??? ?? ???? ????? ???? ??????? UTF-8 ..
???? ?? ?? ????? ??????? ????? ?????? UTF-8 ? ??? ??? ??? .. ?????? ???? ????? ?????? ??? ??? Notepad++
-----------------------

???? ???? ?? ???? ?? ?????? ?? ????? ???? ????? ???
?????? ?? ????? ??????? ???? ???? ????? ???? ?????? ??????? ??????? ??? ?? ????? ??? ?? ????? ??? ???????? ???? ???? ?????


--------------------------------------------
2- ???? ?? ?????? ???? ??? ????? ??????? ???? ?????? .. ??? ???? ??????? ???? ??? ???? ????? ???? ?? ???????? ..
-------------------------------------------

????? ??? ?? ???? ???? ???? ???? ??? ??? ????? ?????? ????? ?? ??? ?????? ??????? ????? ??????? ?????? ??? ???? ???? ?? ??? ????? ((?? ???? ?? ???? ????? ?? ?? ??? ???? ??? ??? ??? ???? ??? ????? ??????? ??????))
??? ????? ???? ?? ??????? ?? ???????? ??? ??????? ??? ???? ??? ???? ?? ???? ??????
??? ???????? ??? ???? ????? ???? ???? ???? ?? ?????? ????? ???? ???


--------------------------------------------
3- Sid (???????) ? ?? ???? ???? ????? ?? ??????? , ??? ????? ?? ?? ?? ??? ????? ????? .. ????? ?? ??????? ?????? ???? ?????? ??????? ..
--------------------------------------------

??? ???? ????? ??? ????? ???? ???? ?? ???? ??????? ?????? ????? ????? ?? ??? ???? ????? ????
?? ??? ?? ?? ??????? ?????? ?????? ?????? ??? ????? ???? ??? ????? ??? ???? ????? ??????? ??? ?? ??????? ?? ?????? ?? ??? ???? ????????? ???? ??? ???? ????? ??? ?? ??


--------------------------------------
4- ???? ?? ????? ???????? ???????? ?????? ???? ??? ??? ??? ????? , ???? ???? ????? phpBB3
---------------------------------------

???? ???? ????? ?????? ???? ?? ??? ?? ??? ??????? ???? ?? ??????? ???? ????? ????? ?? ?? ???? ??????? ???? ?? ????

----------------------------------------
- ???? ????? ?? ??? ???? ?????? ? ???? ???? ??? ?? ?????? ???????? ???? ?? ??? ????? ???? ?????? .. ???? ?? ??? ??????? ????????..
--------------------------------------

???? ?? ?? ?????? ?? ?????? ????? ?? ????? ??? ?? ???? ??? ??? ??? ????? ????? ????? ??? ?????? ???? ?????? ????? .?.



===============================

??? ?????? shinigami

???? ???? ???? ??? ???? ??????? ???? ????


???? ???

????? ????? ?????

مرسل: الخميس مارس 13, 2008 1:24 pm
بواسطة ostora
???? ????? ???? ???

?? ??? ?????? ???? ????? ????? ??? ???? ?????? ?? ???? sid ?? ???? ??? ?????? ??? ????? ??? ??????? ?? ???? ??? ????? ?????? ?? ?????? ????


????? ???? ??????? ???? ??????? ????????????????????

????? ????? ?????

مرسل: الخميس مارس 13, 2008 4:43 pm
بواسطة Garebooo
??????? ??????? ?? ??? ??? ????? ??? ????? ??????? ?

??? ?? ??? ?????? ???? ??????? ... ??? ??? ???? ??????? ??? ???? ..

??????? ?????? ?????? ????????
?? ??? ??? ???? ?? ???? ?????? ? ?????? ??????? ?? ?????? ..

??????? ??????? ?? ??????? ????? ??? ???? ?? SID ??? ???? ???? Stylish ??? ??? ????? ???? ?? ????? ?? ???? ???? ????? ??? phpBB3

??????? ????? ????? .. ???? ?? ????? ??????? 777 ??????? /images/avatars/gallery

gallery ???????


????????
Garebooo

????? ????? ?????

مرسل: الأربعاء مارس 19, 2008 3:51 pm
بواسطة ostora
?? ??? ?????? ?? ?????
??????? ???? ?????? + ?????????


??? ??????? ?????? ??? ??? ?????? ??? ???? ?? ?????
??? ???? ?????? ?? ????????? ????????


??????? ? sid ??? ??? ??? ?? ?? ???? ??? ?? ??? ?????? ???? ????? ?????? ???? ?????? ???? ????? ?????? ???? ???? ??? ????? ??? ????? ??? ????
????? ??????

??? ??????? ???? ???? ???????? ????? ????

????? ????? ?????

مرسل: الثلاثاء مارس 25, 2008 8:35 pm
بواسطة ostora
??? ?? ??????????????????????????

????? ????? ???? ??? ???? ?? ?????? ??????? ??? ??? ????? ?? ?? ????? ???? ???? ??? ?????? ???

????? ????? ?????

مرسل: الأربعاء مارس 26, 2008 2:52 pm
بواسطة Garebooo
???? ?? ?????? ??????? ?? ???? ??????? ????? !

????? ????? ?????

مرسل: الخميس مارس 27, 2008 8:20 pm
بواسطة ostora
??????
http://www.onlyscout.com/f/index.php" onclick="window.open(this.href);return false;

?????? ???????
????? ???????: onlyscout
??? ???????: phpbb3_5wc82
???? ???????: /
????? ????: ????

????? ????? ?????

مرسل: السبت مارس 29, 2008 10:17 am
بواسطة ostora
??? ?? ?????? ??????? ?????? ??????

?????? ???? ?? ?????