[مجابة] مشكله بسبب هاك المتواجدين

منتدى خاص للنقاش حول هاكات الجيل الثاني أفكارها، مشاكل تركيبها وكل ماله علاقة بها.

المشرف: alhitary

صورة العضو الرمزية
mr_matrax
عضو نشيط
عضو نشيط
مشاركات: 185
اشترك في: الأربعاء مارس 08, 2006 3:13 am

[?????] ????? ???? ??? ??????????

مشاركةبواسطة mr_matrax » الأربعاء سبتمبر 13, 2006 3:12 am

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

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

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

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

??? ???? 2 ???????? ??? ???? :: 1 ?????, 0 ????? ? 1 ????, [ ?????? ????? ] [ ?????? ]



صورة


????? ????? ???? ????? ???? ?? 24 ???? ??????? ??? ?????

???? ??24 ???? ??????? :roll:

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

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

http://members.lycos.co.uk/noorelaslam/Forums
آخر تعديل بواسطة mr_matrax في الجمعة سبتمبر 22, 2006 1:55 pm، تم التعديل مرتين في المجمل.
صورة
فضل الصلاة على النبى (ص)
صورة
قال النبي - صلى الله عليه وسلم - :
((من صلى علي صلاة صلى الله علية بها عشرا ))
صورة
وقال صلى الله عليه وسلم - (لاتجعلوا قبرى عيدا وصلوا علي فان صلاتكم تبلغنى حيث كنتم )
وقال صلى الله عليه وسلم (البخيل من ذكرت عنده فلم يصل علي )

صورة

http://www.toparab.wolf-soft.com/




صورة العضو الرمزية
mr_matrax
عضو نشيط
عضو نشيط
مشاركات: 185
اشترك في: الأربعاء مارس 08, 2006 3:13 am

مشاركةبواسطة mr_matrax » الأربعاء سبتمبر 13, 2006 3:17 am

?? ????? ???? ??? ????? ?? ??????? :arrow:

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

################################################################# 
## ????? ?????: ??? ???? ???????? 
## ?????? ?????: 1.1.0 
## ???? ?????:   ??????? http://members.lycos.co.uk/mohamdes 
## 
## ??? ?????:   ??? ????? ???? ???? ??? ???????? ?? ?? ????? ??????? ?? ?? ?????? ???????? 
##      ?? ???? ???? ?????. ???? ??? ????? ???? ????? ??????? ? ??? ?????? ? ??? ???? ??? 
##      ?? ? ??? ??? ??. ??? ?? ????? ???? ??? ????? ?? ???? ???? ??? ??? ?????? ???????. 
##    
## ????? ???????: ??? 
## ??? ??????? ??????: ?? 5 ??? 10 ????? 
## ??????? ??????? ???????:         includes/page_header.php 
##               templates/subSilver/overall_header.tpl 
##            ?? ???   templates/subSilver/index_body.tpl 
##               language/lang_arabic/lang_main.php 
## 
##    
## ??????? ???????:   ?? ???? 
## 
## ??????:      ???? ??????? ?? ??? ????? ?????? ?? ???? ??? ???????? ???? ezPortal 
## 
################################################################# 
## ??? ????? ??? ????? ?? ???? ?? ???? ???? ???? ???????? ?? ???? ??????? ???? ???? ??????? 
################################################################# 
# 
# ???????: 
# 
# 1 - ??? ??? ???? ??? ??? 10 ?????? ?????? ??? ???? ???? ??? ????? ??? ?????? ???? ??? 
# ??? ??? ??? 10 ??????.txt ?? ???? ????? ??? ????? ??? ?? ???? ?? ?????? ?? ????? ???????. 
# 
# 2 - ??? ??? ???? ??????? 1.0.0 ?? ??? ????? ? ???? ???????? ??? ??? ?????? ???? ??? 
# ??????? 100 ??? 110.txt 
# 
# ????? ???????: 
# 
#-----[ ???? ]------------------------------------------ 
# 
includes/page_header.php 

# 
#-----[ ???? ?? ]------------------------------------------ 
# 
define('HEADER_INC', TRUE); 

# 
#-----[ ??? ????? ]------------------------------------------ 
# 

// ??? ??? ???????? ???? ???? ????? 
$CFG['number_recent_topics'] = '10'; 

// ????????? ???? ?? ???? ?? ???? ?? ??? ????????? ???? ??? ??????? ?????? 
$CFG['exceptional_forums'] = ''; 

# 
#-----[ ???? ?? ]------------------------------------------ 
# 
$s_last_visit = ( $userdata['session_logged_in'] ) ? create_date($board_config['default_dateformat'], $userdata['user_lastvisit'], $board_config['board_timezone']) : ''; 

# 
#-----[ ??? ????? ]------------------------------------------ 
# 

// 
// Recent Topics 
// 
$is_auth_ary = array(); 
$is_auth_ary = auth(AUTH_ALL, AUTH_LIST_ALL, $userdata, $forum_data); 

if( $CFG['exceptional_forums'] == '' ) 
{ 
   $except_forum_id = '\'start\''; 
} 
else 
{ 
   $except_forum_id = $CFG['exceptional_forums']; 
} 

for ($i = 0; $i < count($forum_data); $i++) 
{ 
   if ((!$is_auth_ary[$forum_data[$i]['forum_id']]['auth_read']) or (!$is_auth_ary[$forum_data[$i]['forum_id']]['auth_view'])) 
   { 
      if ($except_forum_id == '\'start\'') 
      { 
         $except_forum_id = $forum_data[$i]['forum_id']; 
      } 
      else 
      { 
         $except_forum_id .= ',' . $forum_data[$i]['forum_id']; 
      } 
   } 
} 
$sql = "SELECT t.topic_id, t.topic_title, t.topic_last_post_id, t.forum_id, t.topic_replies, p.post_id, p.poster_id, p.post_time, u.user_id, u.username 
      FROM " . TOPICS_TABLE . " AS t, " . POSTS_TABLE . " AS p, " . USERS_TABLE . " AS u 
      WHERE t.forum_id NOT IN (" . $except_forum_id . ") 
         AND t.topic_status <> 2 
         AND p.post_id = t.topic_last_post_id 
         AND p.poster_id = u.user_id 
      ORDER BY p.post_id DESC 
      LIMIT " . $CFG['number_recent_topics']; 
if (!$result = $db->sql_query($sql)) 
{ 
   message_die(GENERAL_ERROR, 'Could not query recent topics information', '', __LINE__, __FILE__, $sql); 
} 
$number_recent_topics = $db->sql_numrows($result); 
$recent_topic_row = array(); 
while ($row = $db->sql_fetchrow($result)) 
{ 
   $recent_topic_row[] = $row; 
} 
for ($i = 0; $i < $number_recent_topics; $i++) 
{ 
   $template->assign_block_vars('recent_topic_row', array( 
      'U_TITLE' => append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $recent_topic_row[$i]['post_id']) . '#' .$recent_topic_row[$i]['post_id'], 
      'L_TITLE' => $recent_topic_row[$i]['topic_title'], 
      'L_REPLIES' => intval($recent_topic_row[$i]['topic_replies']), 
      'U_POSTER' => append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $recent_topic_row[$i]['user_id']), 
      'S_POSTER' => $recent_topic_row[$i]['username'], 
        'S_POSTTIME' => $lang['Reply_time'] .': ' . create_date($board_config['default_dateformat'], $recent_topic_row[$i]['post_time'], $board_config['board_timezone']) 
      ) 
   ); 
} 
// 
// END - Recent Topics 
// 

# 
#-----[ ???? ?? ]------------------------------------------ 
# 
   'L_SEARCH_SELF' => $lang['Search_your_posts'], 

# 
#-----[ ??? ????? ]------------------------------------------ 
# 
   // Recent Topics 
   'L_RECENT_TOPICS' => $lang['Recent_topics'], 
   'L_AUTHOR' => $lang['Replier'], 
   'L_VIEW_AUTHOR' => $lang['View_replier'], 
   'L_TOTAL_REPLIES' => $lang['Total_replies'], 

# 
#-----[ ???? ]------------------------------------------------------- 
# 
language/lang_arabic/lang_main.php 

# 
#-----[ ???? ?? ]--------------------------------------------- 
# 
// That's all Folks! 

# 
#-----[ ??? ????? ]---------------------------------------- 
# 

// Last 10 posts 
$lang['Recent_topics'] = '??? ???????? ????????'; 
$lang['Reply_time'] = '??? ??'; 
$lang['Replier'] = '??? ????'; 
$lang['View_replier'] = '??? ????? ?????? ?????'; 
$lang['Total_replies'] = '??? ??????'; 

# 
# ??? ???? ?? ???? ?????? ?? ?? ????? ??????? ?? ??????? 
# 
#-----[ ???? ]------------------------------------------------------- 
# 
templates/subSilver/overall_header.tpl 

# 
#-----[ ???? ?? ]--------------------------------------------- 
#   ??? ??? ????? ?? ????? ????? 

                  <td height="25" align="center" valign="top" nowrap="nowrap"><span class="mainmenu"> <a href="{U_PROFILE}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_profile.gif" width="12" height="13" border="0" alt="{L_PROFILE}" hspace="3" />{L_PROFILE}</a>   <a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_message.gif" width="12" height="13" border="0" alt="{PRIVATE_MESSAGE_INFO}" hspace="3" />{PRIVATE_MESSAGE_INFO}</a>   <a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_LOGIN_LOGOUT}" hspace="3" />{L_LOGIN_LOGOUT}</a> </span></td> 
               </tr> 
            </table></td> 
         </tr> 
      </table> 

      <br /> 

# 
#-----[ ??? ????? ]---------------------------------------- 
# 
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline"> 
   <tr> 
       <td class="catHead" height="25" align="center"><span class="cattitle">{L_RECENT_TOPICS}</span></td> 
   </tr> 
   <tr> 
       <td class="row1" align="left" height="30"><span class="gensmall"> 
           <marquee id="recent_topics" behavior="scroll" direction="right" scrolldelay="50" scrollamount="2"> 
           <!-- BEGIN recent_topic_row --> 
           » <a href="{recent_topic_row.U_TITLE}" title="{recent_topic_row.S_POSTTIME}" onMouseOver="document.all.recent_topics.stop()" onMouseOut="document.all.recent_topics.start()">{recent_topic_row.L_TITLE}</a> || 
           {L_AUTHOR}: <a href="{recent_topic_row.U_POSTER}" title="{L_VIEW_AUTHOR}" onMouseOver="document.all.recent_topics.stop()" onMouseOut="document.all.recent_topics.start()">{recent_topic_row.S_POSTER}</a> || {L_TOTAL_REPLIES} [ {recent_topic_row.L_REPLIES} ]    .::.     
           <!-- END recent_topic_row --> 
           </marquee> 
           </span> 
       </td> 
   </tr> 
</table><br /> 

# 
# ??? ??? ???? ?? ???? ?????? ?? ?????? ???????? ??? ?? ??????? 
# 
#-----[ ???? ]------------------------------------------------------- 
# 
templates/subSilver/index_body.tpl 

# 
#-----[ ???? ?? ]--------------------------------------------- 
# 
      <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a></td> 
  </tr> 
</table> 

# 
#-----[ ??? ????? ]---------------------------------------- 
# 
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline"> 
   <tr> 
       <td class="catHead" height="25" align="center"><span class="cattitle">{L_RECENT_TOPICS}</span></td> 
   </tr> 
   <tr> 
       <td class="row1" align="left" height="30"><span class="gensmall"> 
           <marquee id="recent_topics" behavior="scroll" direction="right" scrolldelay="50" scrollamount="2"> 
           <!-- BEGIN recent_topic_row --> 
           » <a href="{recent_topic_row.U_TITLE}" title="{recent_topic_row.S_POSTTIME}" onMouseOver="document.all.recent_topics.stop()" onMouseOut="document.all.recent_topics.start()">{recent_topic_row.L_TITLE}</a> || 
           {L_AUTHOR}: <a href="{recent_topic_row.U_POSTER}" title="{L_VIEW_AUTHOR}" onMouseOver="document.all.recent_topics.stop()" onMouseOut="document.all.recent_topics.start()">{recent_topic_row.S_POSTER}</a> || {L_TOTAL_REPLIES} [ {recent_topic_row.L_REPLIES} ]    .::.     
           <!-- END recent_topic_row --> 
           </marquee> 
           </span> 
       </td> 
   </tr> 
</table><br /> 

# 
#-----[ ???? ? ???? ???? ???????]---------------------------------------- 
# 
# ?????
[/code]
صورة
فضل الصلاة على النبى (ص)
صورة
قال النبي - صلى الله عليه وسلم - :
((من صلى علي صلاة صلى الله علية بها عشرا ))
صورة
وقال صلى الله عليه وسلم - (لاتجعلوا قبرى عيدا وصلوا علي فان صلاتكم تبلغنى حيث كنتم )
وقال صلى الله عليه وسلم (البخيل من ذكرت عنده فلم يصل علي )

صورة

http://www.toparab.wolf-soft.com/

صورة العضو الرمزية
momo2020
عضو فعال
عضو فعال
مشاركات: 625
اشترك في: الأربعاء ديسمبر 21, 2005 3:08 am
مكان: مصـــ ام الدنيا ـــر
اتصال:

مشاركةبواسطة momo2020 » الأربعاء سبتمبر 13, 2006 2:11 pm

??? ???? ??? ??? 10 ?????? 8O

?? ???? ???? ??? index_body.tpl
كلمتان خفيفتان على اللسان ثقيلتان في الميزان حبيبتان الى الرحمن .. سبحان الله وبحمده سبحان الله العظيم .

:P هـــلا

صورة العضو الرمزية
mr_matrax
عضو نشيط
عضو نشيط
مشاركات: 185
اشترك في: الأربعاء مارس 08, 2006 3:13 am

مشاركةبواسطة mr_matrax » الخميس سبتمبر 14, 2006 7:07 pm

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

??? ????? ??? ??? ?????? momo2020

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

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

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

                     ________________________________
                     |          phpBBArabia         |                                                                |      www.phpBBArabia.com     | 
                     |    ???? ??????? phpBB ?????  | 
               __(  (|______________________________|)  )__
              ((( \  \ >  /_)                ( \  < /  / )))
              (\\\ \  \_/  /                \  \_/  / ///)
               \          /                  \          /
                \      _/                     \_       /
                  /    /                         \     \
   o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
   o                                                                   o
   o ?? ????? ??????????? ?? ?????? ????????????,?????????? ???? ???????o 
   o  ???? ????? ????? ???????,???? ??? ?? ???? ??????? ??? ????  ???? o
   o  ?? ???? ?? ????? ??? ????????,????? ?? ??????? ?????? ?????????,???o
   o?? ?????? ??? ???? phpBB ??????? ?? ??? ????? ?????? ???????? ?????o
   o  ????? ??? ????? ?????? ???????? ??????? ,?? ???? ????  ????????? ???? o                         o ???? ?? ?? ??????? ????????? ???? ????? ??????? ?????????,?????? ???o
   o  ?????? ?????? ??? ????? ???? ?? ??? ?? ?? ??????,,,????? ??????? o
   o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o 

######################################################## 
## 
## ????? ????? : ?? ????? ????? ???????? ??? ?? ??????
## ?????? : 1.1
## ?????? : Zozo zozo@etoiles.net
## ????? ?????? : @ ??????? @    
## ???? ??????? : ???
## ????? ????? ?????? : 1-2 ????? 
## 
## ??????? ???? ????? ????????
##                   - templates/subSilver/index_body.tpl
##                   - language/lang_arabic/lang_main.php
##                   - includes/page_header.php
## 
## ??????? ??????? : ?? ???? 
## 
########################################################

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

# 
#-----[ ???? ]---------------------------------
# 
/templates/subSilver/index_body.tpl
# 
#-----[ ???? ]---------------------------------
# 
 	<td class="row1" align="right"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ {L_WHOSONLINE_ADMIN} ]   [ {L_WHOSONLINE_MOD} ]<br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}</span></td>
# 
#-----[ ???????? ]-----------------------------
# 
	<td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ {L_WHOSONLINE_ADMIN} ]   [ {L_WHOSONLINE_MOD} ]<br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}<br /><br />{USERS_OF_THE_DAY_LIST}</span></td>



# 
#-----[ ???? ]--------------------------------
# 
/language/lang_arabic/lang_main.php
# 
#-----[ ???? ]--------------------------------
# 
$lang['Registered_users'] = '??????? ??????:';
# 
#-----[ ??? ????? ]---------------------------
# 
$lang['Day_users'] = '??????? ?????????? ???? 24 ???????:';
$lang['Not_day_users'] = '??????? ????? <span style="color:red">?? ???????</span> ???? 24 ?????:';
# 
#-----[ ???? ]--------------------------------
# 
/includes/page_header.php
# 
#-----[ ???? ]--------------------------------
# 
	'LOGGED_IN_USER_LIST' => $online_userlist,
# 
#-----[ ??? ????? ]----------------------------
# 
	'USERS_OF_THE_DAY_LIST' => $day_userlist,
# 
#-----[ ???? ]---------------------------------
# 
//
// Obtain number of new private messages
// if user is logged in
//
# 
#-----[ ??? ????? ]----------------------------
# 
//
// Users of the day MOD
//

// ############ Edit below ############
// #
$display_not_day_userlist = 1; // change to 0 here if you don't want the list of the users who didn't visit to be displayed
// #
// ############ Edit above ############

$sql = "SELECT user_id, username, user_allow_viewonline, user_level, user_session_time
	FROM ".USERS_TABLE."
	WHERE user_id > 0
	ORDER BY user_level DESC, username ASC";
if( !($result = $db->sql_query($sql)) )
{
	message_die(GENERAL_ERROR, 'Could not obtain user/day information', '', __LINE__, __FILE__, $sql);
}

$day_userlist = '';
$not_day_userlist = '';

while( $row = $db->sql_fetchrow($result) )
{
	$style_color = '';
	if ( $row['user_level'] == ADMIN )
	{
		$row['username'] = '<b>' . $row['username'] . '</b>';
		$style_color = 'style="color:#' . $theme['fontcolor3'] . '"';
	}
	else if ( $row['user_level'] == MOD )
	{
		$row['username'] = '<b>' . $row['username'] . '</b>';
		$style_color = 'style="color:#' . $theme['fontcolor2'] . '"';
	}
	if ( $row['user_allow_viewonline'] )
	{
		$user_day_link = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '"' . $style_color .'>' . $row['username'] . '</a>';
	}
	else
	{
		$user_day_link = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '"' . $style_color .'><i>' . $row['username'] . '</i></a>';
	}
	if ( $row['user_allow_viewonline'] || $userdata['user_level'] == ADMIN )
	{
		if ( $row['user_session_time'] >= ( time() - 86400 ) )
		{
			$day_userlist .= ( $day_userlist != '' ) ? ', ' . $user_day_link : $user_day_link;
		}
		else $not_day_userlist .= ( $not_day_userlist != '' ) ? ', ' . $user_day_link : $user_day_link;
	}
}
if ( empty($day_userlist) )
{
	$day_userlist = $lang['None'];
}
$day_userlist = ( ( isset($forum_id) ) ? '' : $lang['Day_users'] ) . ' ' . $day_userlist;
if ( empty($not_day_userlist) )
{
	$not_day_userlist = $lang['None'];
}
$not_day_userlist = ( ( isset($forum_id) ) ? '' : $lang['Not_day_users'] ) . ' ' . $not_day_userlist;
if ( $display_not_day_userlist )
{
	$day_userlist .= '<br />' . $not_day_userlist;
}
//
// End of MOD
//
# 
#-----[ ???? ??????? ??? ??????? ]--------------------
# 
# 
#-----[ ??????? ??? ?????? ???????  ]-----------------
# 

????? @ ??????? @   ???? ?? www.phpBBarabia.com

www.ad4host.com/mo7taref
صورة
فضل الصلاة على النبى (ص)
صورة
قال النبي - صلى الله عليه وسلم - :
((من صلى علي صلاة صلى الله علية بها عشرا ))
صورة
وقال صلى الله عليه وسلم - (لاتجعلوا قبرى عيدا وصلوا علي فان صلاتكم تبلغنى حيث كنتم )
وقال صلى الله عليه وسلم (البخيل من ذكرت عنده فلم يصل علي )

صورة

http://www.toparab.wolf-soft.com/

صورة العضو الرمزية
momo2020
عضو فعال
عضو فعال
مشاركات: 625
اشترك في: الأربعاء ديسمبر 21, 2005 3:08 am
مكان: مصـــ ام الدنيا ـــر
اتصال:

مشاركةبواسطة momo2020 » الخميس سبتمبر 14, 2006 11:02 pm

??? ??? index_body.tpl? :D
كلمتان خفيفتان على اللسان ثقيلتان في الميزان حبيبتان الى الرحمن .. سبحان الله وبحمده سبحان الله العظيم .

:P هـــلا

صورة العضو الرمزية
mr_matrax
عضو نشيط
عضو نشيط
مشاركات: 185
اشترك في: الأربعاء مارس 08, 2006 3:13 am

مشاركةبواسطة mr_matrax » الجمعة سبتمبر 15, 2006 1:48 am

??? ????? ???? ???? :arrow:
صورة
فضل الصلاة على النبى (ص)
صورة
قال النبي - صلى الله عليه وسلم - :
((من صلى علي صلاة صلى الله علية بها عشرا ))
صورة
وقال صلى الله عليه وسلم - (لاتجعلوا قبرى عيدا وصلوا علي فان صلاتكم تبلغنى حيث كنتم )
وقال صلى الله عليه وسلم (البخيل من ذكرت عنده فلم يصل علي )

صورة

http://www.toparab.wolf-soft.com/

صورة العضو الرمزية
momo2020
عضو فعال
عضو فعال
مشاركات: 625
اشترك في: الأربعاء ديسمبر 21, 2005 3:08 am
مكان: مصـــ ام الدنيا ـــر
اتصال:

مشاركةبواسطة momo2020 » الجمعة سبتمبر 15, 2006 7:23 am

?????? ?????

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

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

???? ??

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

<td class="row1" align="right"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ {L_WHOSONLINE_ADMIN} ]   [ {L_WHOSONLINE_MOD} ]<br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}</span></td>
??????? ???

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

<td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ {L_WHOSONLINE_ADMIN} ]   [ {L_WHOSONLINE_MOD} ]<br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}<br /><br />{USERS_OF_THE_DAY_LIST}</span></td>
?? ??? index_body.tpl

????? ??? ?? ????????? ???? ????? ???? ??? ???? ?????? :P [/b]
كلمتان خفيفتان على اللسان ثقيلتان في الميزان حبيبتان الى الرحمن .. سبحان الله وبحمده سبحان الله العظيم .

:P هـــلا

صورة العضو الرمزية
mr_matrax
عضو نشيط
عضو نشيط
مشاركات: 185
اشترك في: الأربعاء مارس 08, 2006 3:13 am

مشاركةبواسطة mr_matrax » الجمعة سبتمبر 15, 2006 4:02 pm

??? ?????? ???? ??? ??????? ?? ????? ????? ?????? ????? :arrow:

???? ??? ???? ????? :arrow:



صورة
صورة
فضل الصلاة على النبى (ص)
صورة
قال النبي - صلى الله عليه وسلم - :
((من صلى علي صلاة صلى الله علية بها عشرا ))
صورة
وقال صلى الله عليه وسلم - (لاتجعلوا قبرى عيدا وصلوا علي فان صلاتكم تبلغنى حيث كنتم )
وقال صلى الله عليه وسلم (البخيل من ذكرت عنده فلم يصل علي )

صورة

http://www.toparab.wolf-soft.com/

صورة العضو الرمزية
momo2020
عضو فعال
عضو فعال
مشاركات: 625
اشترك في: الأربعاء ديسمبر 21, 2005 3:08 am
مكان: مصـــ ام الدنيا ـــر
اتصال:

مشاركةبواسطة momo2020 » الجمعة سبتمبر 15, 2006 4:14 pm

??? ?????? ??? :D
كلمتان خفيفتان على اللسان ثقيلتان في الميزان حبيبتان الى الرحمن .. سبحان الله وبحمده سبحان الله العظيم .

:P هـــلا

صورة العضو الرمزية
mr_matrax
عضو نشيط
عضو نشيط
مشاركات: 185
اشترك في: الأربعاء مارس 08, 2006 3:13 am

مشاركةبواسطة mr_matrax » الجمعة سبتمبر 15, 2006 4:27 pm

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

??? ?????? momo2020


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

??? ??? ???? ???? ???? ??????
صورة
فضل الصلاة على النبى (ص)
صورة
قال النبي - صلى الله عليه وسلم - :
((من صلى علي صلاة صلى الله علية بها عشرا ))
صورة
وقال صلى الله عليه وسلم - (لاتجعلوا قبرى عيدا وصلوا علي فان صلاتكم تبلغنى حيث كنتم )
وقال صلى الله عليه وسلم (البخيل من ذكرت عنده فلم يصل علي )

صورة

http://www.toparab.wolf-soft.com/

صورة العضو الرمزية
سامى سوفت
عضو فعال
عضو فعال
مشاركات: 822
اشترك في: الأربعاء مايو 17, 2006 11:57 pm
مكان: الاسكندرية
اتصال:

مشاركةبواسطة سامى سوفت » الجمعة سبتمبر 15, 2006 5:05 pm

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

صورة العضو الرمزية
momo2020
عضو فعال
عضو فعال
مشاركات: 625
اشترك في: الأربعاء ديسمبر 21, 2005 3:08 am
مكان: مصـــ ام الدنيا ـــر
اتصال:

مشاركةبواسطة momo2020 » الجمعة سبتمبر 15, 2006 5:14 pm

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

?? ?? ?? ????

???? ... ??? ????? ??? ??????? ?????
كلمتان خفيفتان على اللسان ثقيلتان في الميزان حبيبتان الى الرحمن .. سبحان الله وبحمده سبحان الله العظيم .

:P هـــلا

صورة العضو الرمزية
سامى سوفت
عضو فعال
عضو فعال
مشاركات: 822
اشترك في: الأربعاء مايو 17, 2006 11:57 pm
مكان: الاسكندرية
اتصال:

مشاركةبواسطة سامى سوفت » الجمعة سبتمبر 15, 2006 5:19 pm

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

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

<div width="600"><script src="http://www.alarabiya.net/ara_v_ticker.html"></script></div>
<html dir="rtl"> 

<head> 
<meta http-equiv="Content-Language" content="ar-sa"> 
</head> 

<div align="center"> 
   <table border="1" width="550" height="35"> 
      <tr> 
         <td height="29" width="96" align="center"><font color="#000000"><b> 
        ??? ???????</b></font></td> 
         <td height="29" width="467" align="center"><b> 
         <marquee direction="right">?????? ????? ????? ??????? ??????? ????????? ??? ?????? ?????????? ??????? ???????????? ????????? ????????? ??????? ?????? ??????</marquee></b></td> 
      </tr> 
   </table> 
</div> 

<br>
<!-- B up_table -->
	<table border="0" cellpadding="0" cellspacing="0" width="100%" dir="rtl">
		<tr>
			<td>
			{UP_RA}</td>
			<td width="100%" {UP_CE}>
			<p align="center">{UP_CEA}</td>
			<td>
			{UP_LE}</td>
		</tr>
	</table>
<!-- E up_table -->
<table border="0" cellpadding="2" cellspacing="1" width="100%" class="forumline" height="60" >
	<tr>
	<form method="post" action="{S_LOGIN_ACTION}">
		<td class="row1" width="69%" ><span class="genmed">
<img border="0" src="{T_TEMPLATE_PATH}/images/images_az/navbits_start.gif"><span class="nav"> {L_INDEX}</span></td>
		<!-- BEGIN switch_user_logged_out -->
		<td class="row1">
		<span class="gensmall">
		 {L_USERNAME}: 
		<input class="post" type="text" name="username" size="10" />		
		<!-- BEGIN switch_allow_autologin -->
		<input class="text" type="checkbox" name="autologin" />{AUTO_LOGIN}
		<!-- END switch_allow_autologin -->
		<br>     {L_PASSWORD}: 
		<input class="post" type="password" name="password" size="10" maxlength="32" />
		 <input type="submit" class="mainoption" name="login" value="{L_LOGIN}" />
		</span> </td>
		</form>
		<!-- END switch_user_logged_out -->
		
		<!-- BEGIN switch_user_logged_in -->
		<td class="row1" align="center"><span class="gensmall">
		<span class="gensmall"><b>{WELCOME} {L_INDEX}</b><span>
		<br><a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br>{LAST_VISIT_DATE}<br><a href="{U_PRIVATEMSGS}" class="nav" >{PRIVATE_MESSAGE_INFO}</a>
		</span></td>
		<!-- END switch_user_logged_in -->
	</tr>	
		</table>
		<!-- B do_table -->
	<table border="0" cellpadding="0" cellspacing="0" width="100%" dir="rtl">
		<tr>
			<td>
			{DO_RA}</td>
			<td width="100%" {DO_CE}>
			<p align="center">{DO_CEA}</td>
			<td>
			{DO_LE}</td>
		</tr>
	</table>
<!-- E do_table -->
<br>

<!-- BEGIN switch_user_logged_out -->
</p>
<table border="0" cellpadding="2" cellspacing="1" width="100%" class="forumline" >
	<tr>
		<th class="thCornerL" height="20" >
		<p align="right">{WELCOME} {L_INDEX}</th>
	</tr>
	<tr>
		<td class="row1" ><span class="genmed">
		{WELCOME_A}
</spen></td>
	</tr>
</table>
<br>


<!-- END switch_user_logged_out -->

<table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">
  <tr> 
	<td align="right" valign="bottom"><span class="gensmall">
{CURRENT_TIME}</span></td>
	<td align="right" valign="bottom" class="gensmall">
		<!-- BEGIN switch_user_logged_in -->
		<a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a><br />
		<!-- END switch_user_logged_in -->
		<a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a></td>
  </tr>
</table>


  <!-- BEGIN catrow -->
  
  <!-- B up_table -->
	<table border="0" cellpadding="0" cellspacing="0" width="100%" dir="rtl">
		<tr>
			<td>
			{UP_RA}</td>
			<td width="100%" {UP_CE}>
			<p align="center">{UP_CEA}</td>
			<td>
			{UP_LE}</td>
		</tr>
	</table>
<!-- E up_table -->
  <table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
  <tr> 
	<td class="catright" colspan="6" height="25">
	<p align="center"><span class="cattitle"><a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></span></td>
  </tr>
    <tr> 
	<th colspan="2" class="thCornerL" height="25"> {L_FORUM} </th>	
	<th class="thCornerR" height="25"> {L_LASTPOST} </th>

	<th class="thTop" height="25"> {L_TOPICS} </th>
	<th class="thTop" height="25"> {L_POSTS} </th>
  </tr>
  <!-- BEGIN forumrow -->
  <tr> 
	<td class="row4" align="center" height="50">
	<img src="{catrow.forumrow.FORUM_FOLDER_IMG}" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" />
	</td>
	<td class="row1" width="56%" height="50"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a></span>
	<br><span class="genmed">{catrow.forumrow.FORUM_DESC}</span>
	<br></span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
	</td>
	  <td class="row2" align="center" height="50" width="30%"> <span class="gensmall">
	{catrow.forumrow.LAST_POST}</span></td>
	<td class="row1" align="center" height="50" width="7%"><span class="gensmall">{catrow.forumrow.TOPICS} </span></td>
	<td class="row2" align="center" height="50" width="7%"><span class="gensmall">{catrow.forumrow.POSTS}</span></td>
  </tr>
  <!-- END forumrow -->
    </table>
    <!-- B do_table -->
	<table border="0" cellpadding="0" cellspacing="0" width="100%" dir="rtl">
		<tr>
			<td>
			{DO_RA}</td>
			<td width="100%" {DO_CE}>
			<p align="center">{DO_CEA}</td>
			<td>
			{DO_LE}</td>
		</tr>
	</table>
<!-- E do_table -->
    <br>
  <!-- END catrow --> 
  
  	<!-- BEGIN switch_user_logged_in -->
<table width="100%" cellspacing="0" border="0" align="center" cellpadding="2">
  <tr> 
 	<td align="left" >
 		<span class="gensmall"><a href="{U_MARK_READ}" class="gensmall">{L_MARK_FORUMS_READ}</a></span>
 	</td>
  </tr>
</table>
 	<!-- END switch_user_logged_in -->
 	
 	
<!-- B up_table -->
	<table border="0" cellpadding="0" cellspacing="0" width="100%" dir="rtl">
		<tr>
			<td>
			{UP_RA}</td>
			<td width="100%" {UP_CE}>
			<p align="center">{UP_CEA}</td>
			<td>
			{UP_LE}</td>
		</tr>
	</table>
<!-- E up_table -->
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
  <tr>
	<td class="catright" height="28">
	<p align="right"><span class="cattitle"><a href="{U_VIEWONLINE}" class="cattitle" >{L_WHO_IS_ONLINE}</a></span></td>
  </tr>
  <tr> 
	<td class="row2" height="28">
	<p align="right"><span class="nav">{RECORD_USERS}</span></td>
  </tr>
    <tr> 
	
	<td class="row1" align="right"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ {L_WHOSONLINE_ADMIN} ]   [ {L_WHOSONLINE_MOD} ]<br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}<br /><br />{USERS_OF_THE_DAY_LIST}</span></td>

  </tr>
  <tr>
	<td class="row2" height="31">
	<p align="right"><span class="nav"> {ST} {L_INDEX}</span> </td>
  </tr>
  </table>
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline" height="27">
  <tr>
	<td class="row1" align="center" valign="middle">
	<img src="{T_TEMPLATE_PATH}/images/stats.gif" alt="{L_WHO_IS_ONLINE}" /></td>
	<td class="row1" align="center" width="712"><span class="gensmall">[ {TOTAL_POSTS} ] [ {TOTAL_USERS} ] [ {NEWEST_USER} ]</span>
	</td> 
  </tr>
</table>
<!-- B do_table -->
	<table border="0" cellpadding="0" cellspacing="0" width="100%" dir="rtl">
		<tr>
			<td>
			{DO_RA}</td>
			<td width="100%" {DO_CE}>
			<p align="center">{DO_CEA}</td>
			<td>
			{DO_LE}</td>
		</tr>
	</table>
<!-- E do_table -->


<table width="100%" cellpadding="1" cellspacing="1" border="0">
<tr>
	<td align="right" valign="top"><span class="gensmall">{L_ONLINE_EXPLAIN}</span></td>
	<td align="right" valign="top">
	<p align="left"><span class="gensmall">{S_TIMEZONE}</span></td>
</tr>
</table>

<br />

<table cellspacing="0" border="0" align="center" cellpadding="1">
  <tr> 
	<td width="20" align="center"><img src="{T_TEMPLATE_PATH}/images/folder_new_big.gif" alt="{L_NEW_POSTS}"/></td>
	<td><span class="gensmall"> {L_NEW_POSTS}</span></td>
	<td>  </td>
	<td width="20" align="center"><img src="{T_TEMPLATE_PATH}/images/folder_big.gif" alt="{L_NO_NEW_POSTS}" /></td>
	<td><span class="gensmall"> {L_NO_NEW_POSTS}</span></td>
	<td>  </td>
	<td width="20" align="center"><img src="{T_TEMPLATE_PATH}/images/folder_locked_big.gif" alt="{L_FORUM_LOCKED}" /></td>
	<td><span class="gensmall"> {L_FORUM_LOCKED}</span></td>
  </tr>
</table>

<br /> 
??? ?????? ????????

صورة العضو الرمزية
mr_matrax
عضو نشيط
عضو نشيط
مشاركات: 185
اشترك في: الأربعاء مارس 08, 2006 3:13 am

مشاركةبواسطة mr_matrax » السبت سبتمبر 16, 2006 2:18 am

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

???? ??? ??? ?????? momo2020

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

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

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

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

?? ???? ?????

??? ?????? ????? ?? ??????? ?? ??????? ??????? ???? ??? ???? momo2020

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


صورة

??? ??? ??? ????? ????? ???????
صورة
فضل الصلاة على النبى (ص)
صورة
قال النبي - صلى الله عليه وسلم - :
((من صلى علي صلاة صلى الله علية بها عشرا ))
صورة
وقال صلى الله عليه وسلم - (لاتجعلوا قبرى عيدا وصلوا علي فان صلاتكم تبلغنى حيث كنتم )
وقال صلى الله عليه وسلم (البخيل من ذكرت عنده فلم يصل علي )

صورة

http://www.toparab.wolf-soft.com/

صورة العضو الرمزية
سامى سوفت
عضو فعال
عضو فعال
مشاركات: 822
اشترك في: الأربعاء مايو 17, 2006 11:57 pm
مكان: الاسكندرية
اتصال:

مشاركةبواسطة سامى سوفت » السبت سبتمبر 16, 2006 3:17 am

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


العودة إلى ”[ ×.2.0 ] الهاكات“

الموجودون الآن

المتصفحون للمنتدى الآن: لا يوجد أعضاء مسجلين متصلين وزائر واحد