[ ! ] المطلوب في هاك المتواجدين خلال 24ساعة

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

المشرف: alhitary

صورة العضو الرمزية
Zero_Cool
عضو فعال
عضو فعال
مشاركات: 868
اشترك في: الجمعة ديسمبر 23, 2005 8:55 pm
اتصال:

[ ! ] ??????? ?? ??? ?????????? ???? 24????

مشاركةبواسطة Zero_Cool » السبت يونيو 02, 2007 12:33 am

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

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

##############################################################
## ????? ????? : ?????? ??? ?????????? ???? ??? 24 ?????? ??????? [ 2.0.21 ]
## ????? ?????: chatasos < chatasos@psclub.gr > (Tassos Chatzithomaoglou) http://www.psclub.gr
## ??? ?????: ??? ????? ??? ??????? ???? ??? ?????? ???????? ????? ??????? ??????? ?????????? ???? ???? 24 ???? ??????? , ??? ????? ?????? ??????? ???????? ??????? .
## ?????? ?????: 1.0.0
## ????? : phpbbarabia
## ????? ?????: ???
## ????? ??????: 5 ?????
## ??????? ??????? ???????: includes/page_header.php
##                language/lang_***/lang_main.php
##                templates/***/index_body.tpl
## ??????? ???????:  ?? ????
## ??????: http://opensource.org/licenses/gpl-license.php GNU General Public License v2
##############################################################
##???? ??? install ????? english
################################################################# 
## ?? ????? ??? ????? ?? ???? ????? ?????? ???????? phpBB ??? ??????? http://www.phpBBArabia.com 
## ??? ????? ????? ????? ??? ??????? ???? ?? ??????? ?? ????? ????? ??????? ???? ?? ??????? ???? 
## ???? ??????? ???? ???????? ???????? phpBB ? ???????. ?? ?????? ???? ?? ???? ??? ????? ?? ????? 
## ????? ?????? ???? ?? ?????? ? ?? ????? ?? ?????? ?????? ???????. 
################################################################# 
## ??? ???? ??? ???? ???????? ?? ???? ??????? ???????? ???? ????? ??? ?????? ??? ????? 
#########################################################
#
#-----[ ???? ]------------------------------------------
#
includes/page_header.php
#
#-----[ ???? ]------------------------------------------
#
if (defined('SHOW_ONLINE'))
{
#
#-----[ ??? , ?????? ]------------------------------------------
#
/*****************************
* MOD: Show last visited users
* BEGIN: AFTER, ADD
******************************/
	$lastvisit_userlist = '';

	// ??? ??? ???? ???? ?????? ?????? ??? ????? ????? ?????? 24
	// ?????? ??????? ?? 24 ???? ?? 1 ??? ?????? ?????? ?????? ??? ?? ???? ???????? 
	$lastvisit_hours = 24;	

	// no need to execute code when viewing individual forum pages
	if ( !isset($forum_id) )
	{
		$sql = "SELECT u.user_id, u.username, u.user_level, u.user_allow_viewonline
			FROM " . USERS_TABLE . " u
			WHERE u.user_session_time > " . (time() - 60*60*$lastvisit_hours) . "
			ORDER BY u.username ASC";

		if ( !($result = $db->sql_query($sql)) )
		{
			message_die(GENERAL_ERROR, 'Error getting user list for last visited users', '', __LINE__, __FILE__, $sql);
		}

		$visible_lastvisit_users = 0;
		$hidden_lastvisit_users = 0;
		 
		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_link = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '"' . $style_color .'>' . $row['username'] . '</a>';
				$visible_lastvisit_users++;
			}
			else
			{
				$user_link = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '"' . $style_color .'><i>' . $row['username'] . '</i></a>';
				$hidden_lastvisit_users++;
			}

			if ( $row['user_allow_viewonline'] || $userdata['user_level'] == ADMIN )
			{
				$lastvisit_userlist .= ( $lastvisit_userlist != '' ) ? ', ' . $user_link : $user_link;
			}
		}

		$db->sql_freeresult($result);	

		if ( empty($lastvisit_userlist) )
		{
			$lastvisit_userlist = $lang['None'];
		}
		else
		{
			$lastvisit_userlist = $lang['Registered_users'] . ' ' . $lastvisit_userlist;
		}

		$total_lastvisit_users = $visible_lastvisit_users + $hidden_lastvisit_users;

		$lastvisit_userlist = sprintf($lang['Last_visit_users'], $total_lastvisit_users, $lastvisit_hours, $visible_lastvisit_users, $hidden_lastvisit_users) . '<br />' . $lastvisit_userlist;
		
	}
/*****************************
* MOD: Show last visited users
* END: AFTER, ADD
******************************/

#
#-----[ ???? ]------------------------------------------
#
'LOGGED_IN_USER_LIST' => $online_userlist,
#
#-----[ ??? , ?????? ]------------------------------------------
#
/*****************************
* MOD: Show last visited users
* BEGIN: AFTER, ADD
******************************/
	'LAST_VISIT_USER_LIST' => $lastvisit_userlist,
/*****************************
* MOD: Show last visited users
* END: AFTER, ADD
******************************/
#
#-----[ ???? ]------------------------------------------
#
language/lang_***/lang_main.php
#
#-----[ ???? ]------------------------------------------
#
$lang['Mod_online_color'] = "%s??????%s";
#
#-----[ ??? , ?????? ]------------------------------------------
#
/*****************************
* MOD: Show last visited users
* BEGIN: AFTER, ADD
******************************/
$lang['Last_visit_users'] = '?? ??????? <b>%d</b> ???? ????? ??????? ?? ??? %d ???? : %d ???? , %d ????';
/*****************************
* MOD: Show last visited users
* END: AFTER, ADD
******************************/

#
??????? ?????? : ?????? ????? ????? ??????? ??? ???? ?? ??????? ?? ?????? !
#-----[ ???? ]------------------------------------------
#
templates/***/index_body.tpl
#
#-----[ ???? ]------------------------------------------
#
<td class="row1" align="center" valign="middle" rowspan="{%:1}">
#
#-----[ ??????? ]-------------------------------------
#???? :
#  <td class="row1" align="center" valign="middle" rowspan="2">
# ??? ?? ??? ??????? ????? 1 ????? ???? :
#  <td class="row1" align="center" valign="middle" rowspan="3">
#
%:1 +1
#
#-----[ ?????? , ??? ]------------------------------------------
#
# ?????? ??????? : ??? ??????? ??? ??????? ?????????
#
	<!-- MOD: Show last visited users : INCREMENT rowspan +1 -->
#
#-----[ ???? ]------------------------------------------
#
{LOGGED_IN_USER_LIST}</span></td>
  </tr>
#
#-----[??? ????? ]------------------------------------------
#
<!--
// ****************************
// MOD: Show last visited users
// BEGIN: AFTER, ADD
// ****************************
//-->
  <tr> 
	<td class="row1" align="right"><span class="gensmall">{LAST_VISIT_USER_LIST}</span></td>
  </tr>
<!--
// ****************************
// MOD: Show last visited users
// END: AFTER, ADD
// ****************************
//-->
#
#-----[ ???? / ???? ???? ??????? ]------------------------------------------
#
# ????????
??? ??????? ?? ??? <td class="row1" align="center" valign="middle" rowspan="{%:1}"> ?? ??? index_body ?? ?????? ?? ??? ???? ROWSPAN
????? ????? ????? ?????
???? ??????? ??? ?????????? ???? 24 ???? ???? ???? ??? ?? ???? ??????? ?? ?????? ????? ????? ??? ???? ???? ??? ?????? ?? ??? ???????

?????? ???????? ???? ???? ????? [/b]
آخر تعديل بواسطة Zero_Cool في الأحد يونيو 17, 2007 9:26 pm، تم التعديل 3 مرات في المجمل.
منتديات نجوم سوريا
http://www.souriastars.com

صورة




صورة العضو الرمزية
Zero_Cool
عضو فعال
عضو فعال
مشاركات: 868
اشترك في: الجمعة ديسمبر 23, 2005 8:55 pm
اتصال:

مشاركةبواسطة Zero_Cool » السبت يونيو 02, 2007 1:34 am

??? ????? ??????
http://www.phpbbarabia.com/board/viewtopic.php?t=25538

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

??????? ?????? ?????? ??? ???????
http://www.syrianstars.net
منتديات نجوم سوريا
http://www.souriastars.com

صورة

صورة العضو الرمزية
Zero_Cool
عضو فعال
عضو فعال
مشاركات: 868
اشترك في: الجمعة ديسمبر 23, 2005 8:55 pm
اتصال:

مشاركةبواسطة Zero_Cool » السبت يونيو 02, 2007 1:35 am

???? ??????? index body

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

<table width="734" cellspacing="0" cellpadding="2" border="0" align="center">
  <tr> 
	<td align="right" valign="bottom"><span class="nav"><a href="{U_INDEX}" class="nav"><img src="templates/mozaks/images/arrow2.gif" border="0" alt="Laman Utama" hspace="3" /> {L_INDEX}</a></span></td>
  </tr>
</table>

<table cellspacing="0" cellpadding="0" border="0" width="734" align="center" height=20 background="templates/mozaks/images/hometop.png">
<tr><td align="center" width="100%" valign="middle"></td>
</tr></table>
<table align="center" width="734" cellpadding="2" cellspacing="1" border="0" class="forumline">
  <tr> 
	<td colspan="3" bgcolor=#8BABDD height=18><span class="mozakstitle">  <FONT class="mozakstitle" COLOR="white">{L_NAME_WELCOME} {U_NAME_LINK}</FONT></span></td>
  </tr>
  <tr> 
	<td align="center" valign="middle"> {AVATAR_IMG} </td>
	<td align="right" width="60%"><span class="gensmall">
	<!-- BEGIN switch_user_logged_in -->
	<a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="templates/mozaks/images/dot.gif" border="0" hspace="3" />{PRIVATE_MESSAGE_INFO}<img src="templates/mozaks/images/pm.gif" border="0" hspace="3" /></a><BR>
	<!-- END switch_user_logged_in -->
	<!-- BEGIN switch_user_logged_in -->
	<img src="templates/mozaks/images/dot.gif" border="0" hspace="3" />{LAST_VISIT_DATE}<br />
	<!-- END switch_user_logged_in -->
	<img src="templates/mozaks/images/dot.gif" border="0" hspace="3" />{CURRENT_TIME}</span><BR>
	<!-- BEGIN switch_user_logged_in -->
	<a href="{U_PROFILE}" class="mainmenu"><img src="templates/mozaks/images/prof.gif" border="0" hspace="3" /><B>{L_PROFILE}</B></a> 
	<!-- END switch_user_logged_in -->
	<!-- BEGIN switch_user_logged_out -->
	<a href="{U_REGISTER}" class="mainmenu"><img src="templates/mozaks/images/prof.gif" border="0" hspace="3" /><B>{L_REGISTER}</B></a> 
	<!-- END switch_user_logged_out -->
	<a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="templates/mozaks/images/lo.gif" border="0" hspace="3" /><B>{L_LOGIN_LOGOUT}</B></a> 
	
<!-- BEGIN switch_user_logged_out -->
<table cellpadding="0" cellspacing="3" border="0">
	<tr> 
<form method="post" action="{S_LOGIN_ACTION}"> 
	  <td class="row1" valign="middle" height="28"><span class="gensmall">??? 
		???????? 
		<input class="post" type="text" name="username" size="10" /> ???? 
		?????? 
		<input class="post" type="password" name="password" size="10" /> ?????? 
		???? ??? 
		<input class="text" type="checkbox" name="autologin" />  
		<input type="submit" class="mainoption" name="login" value="{L_LOGIN}" />
		</span></td>
	</tr></form>
  </table>
<!-- END switch_user_logged_out -->
	</td>
	<td align="right" class="gensmall" width="60%">
		<!-- BEGIN switch_user_logged_in -->
		<img src="templates/mozaks/images/dot.gif" border="0" hspace="3" /> <a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a> 
		<br /><img src="templates/mozaks/images/dot.gif" border="0" hspace="3" /> <a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a> 
		<br />
		<!-- END switch_user_logged_in -->
		<img src="templates/mozaks/images/dot.gif" border="0" hspace="3" /> <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a> 
		<BR><img src="templates/mozaks/images/dot.gif" border="0" hspace="3" /> <a href="{U_MARK_READ}" class="gensmall">{L_MARK_FORUMS_READ}</a> </td>
  </tr>
</table><table border="0" cellpadding="4" {DISPLAY} cellspacing="1" width="100%" class="forumline">
	<tr> 
	  <th colspan="2" align="center" height="25" class="thCornerL" nowrap="nowrap">
		<font color="#FFFFFF">?????? ?????</font></th>
	  <th width="50" align="center" class="thTop" nowrap="nowrap"> {L_REPLIES} </th>
	  <th width="50" align="center" class="thTop" nowrap="nowrap"> {L_VIEWS} </th>
	</tr>
	<!-- BEGIN featurerow -->
	<tr> 
	  <td class="row1" align="center" valign="middle" width="20"><img src="{featurerow.TOPIC_FOLDER_IMG}" width="19" height="18" alt="{featurerow.L_TOPIC_FOLDER_ALT}" title="{featurerow.L_TOPIC_FOLDER_ALT}" /></td>
	  <td class="row1" width="100%"><span class="topictitle">{featurerow.NEWEST_POST_IMG}{featurerow.TOPIC_TYPE}<a href="{featurerow.U_VIEW_TOPIC}" class="topictitle">{featurerow.TOPIC_TITLE}</a></span><span class="gensmall"><br />
		{featurerow.GOTO_PAGE}</span></td>
	  <td class="row2" align="center" valign="middle"><span class="postdetails">{featurerow.REPLIES}</span></td>
	  <td class="row2" align="center" valign="middle"><span class="postdetails">{featurerow.VIEWS}</span></td>
	</tr>
	<!-- END featurerow -->
	<!-- BEGIN switch_no_topics -->
	<tr> 
	  <td class="row1" colspan="6" height="30" align="center" valign="middle"><span class="gen">{L_NO_TOPICS}</span></td>
	</tr>
	<!-- END switch_no_topics -->

  </table>

<table cellspacing="0" cellpadding="0" border="0" width="734" align="center" height=18 background="templates/mozaks/images/msgbottom.png">
<tr><td align="center" width="100%" valign="middle"></td>
</tr></table>

<TABLE align=center height=6>
<TR>
	<TD></TD>
</TR>
</TABLE>
<!-- BEGIN catrow -->
<table cellspacing="0" cellpadding="0" border="0" width="734" align="center" height=20 background="templates/mozaks/images/hometop.png">
<tr><td align="center" width="100%" valign="middle">
	<font size="1" color="#5178DD"><b>www.syrianstars.net </b></font></td>
</tr></table>

<table width="734" cellpadding="0" cellspacing="1" border="0" class="forumline" align="center">
<tr> 
	<th colspan="2" width="430" align=left><FONT COLOR="white">   {L_FORUM}</FONT></th>
	<th width="50"> <FONT COLOR="white">{L_TOPICS}</FONT> </th>
	<th width="50"> <FONT COLOR="white">{L_POSTS}</FONT> </th>
	<th width="200"> <FONT COLOR="white">{L_LASTPOST}</FONT> </th>
  </tr>
<tr> 
	<td class="catLeft" colspan="2" height="20">{catrow.CAT_ICON}<span class="cattitle">  <a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></span></td>
	<td class="rowpic" colspan="3" align="right"> </td>
  </tr>
<!-- BEGIN forumrow -->
  <tr> 
	<td class="row1" align="center" valign="middle" height="40"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="46" height="25" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
	<td class="row1" width="100%" height="40">{catrow.forumrow.FORUM_ICON}<span class="forumlink"><a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink"><img src="templates/mozaks/images/arrow_orange.gif" border="0" hspace="3" />{catrow.forumrow.FORUM_NAME}</a>
	<br /></span> <span class="genmed">{catrow.forumrow.FORUM_DESC}
	<br /></span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
	<td class="row2" align="center" valign="middle" height="40"><span class="gensmall">{catrow.forumrow.TOPICS}</span></td>
	<td class="row2" align="center" valign="middle" height="40"><span class="gensmall">{catrow.forumrow.POSTS}</span></td>
	<td class="row2" align="center" valign="middle" height="40" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
  </tr>
<!-- END forumrow -->
</table>
<table cellspacing="0" cellpadding="0" border="0" width="734" align="center" height=18 background="templates/mozaks/images/msgbottom.png">
<tr><td align="center" width="100%" valign="middle"></td>
</tr></table>
<TABLE align=center height=10>
<TR>
	<TD></TD>
</TR>
</TABLE>
<!-- END catrow -->
<table cellspacing="0" cellpadding="0" border="0" width="734" align="center" height=20 background="templates/mozaks/images/hometop.png">
<tr><td align="center" width="100%" valign="middle"></td>
</tr></table>
<table align="center" width="734" cellpadding="2" cellspacing="1" border="0" class="forumline">
  <tr> 
	<td colspan="3" bgcolor=#8BABDD height=18><span class="mozakstitle">  <a href="{U_VIEWONLINE}" class="mozakstitle"><FONT class="mozakstitle" COLOR="white">{L_WHO_IS_ONLINE}</FONT></a></span></td>
  </tr> 
  <td align="center" valign="middle"><img src="templates/mozaks/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
	<td align="right" colspan="2"><span class="gensmall">{TOTAL_USERS_ONLINE}
	<br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}
</br>
{LAST_VISIT_USER_LIST} 
</span> 
</td> 

  <!--
// ****************************
// MOD: Show last visited users
// BEGIN: AFTER, ADD
// ****************************
//-->
  <tr> 
	<td class="row1" align="right"><span class="gensmall">{LAST_VISIT_USER_LIST}</span></td>
  </tr>
<!--
// ****************************
// MOD: Show last visited users
// END: AFTER, ADD
// ****************************
//-->
  <tr> 
	<td colspan="3" bgcolor=#8BABDD height=18><span class="mozakstitle">  <font color="#FFFFFF">???????</font></span></td>
  </tr> 
  <tr> 
	<td align="center" valign="middle"><img src="templates/mozaks/images/stats.gif" alt="???C???E" /></td>
	<td align="right" width="70%"><span class="gensmall">{TOTAL_POSTS}<br /><b><img src=images/heart.gif >{NEWEST_USER}</font></span><font size="1">
    </font><b><img src=images/heart.gif ></span>
	</td>
	<td align="right" valign="bottom"></td>
  </tr>
  </table>

<table cellspacing="0" cellpadding="0" border="0" width="734" align="center" height=18 background="templates/mozaks/images/msgbottom.png">
<tr><td align="center" width="100%" valign="middle"></td>
</tr></table>

<br clear="all" />

<table cellspacing="3" border="0" align="center" cellpadding="0">
  <tr> 
	<td width="20" align="center"><img src="templates/mozaks/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="templates/mozaks/images/folder_big.gif" alt="{L_NO_NEW_POSTS}" /></td>
	<td><span class="gensmall">{L_NO_NEW_POSTS}</span></td>
  </tr>
</table>
منتديات نجوم سوريا
http://www.souriastars.com

صورة

Dev.Moh Sh
مشرف سابق
مشرف سابق
مشاركات: 335
اشترك في: الجمعة يوليو 29, 2005 5:04 pm
مكان: فلسطين - غزة
اتصال:

مشاركةبواسطة Dev.Moh Sh » السبت يونيو 02, 2007 1:52 am

???? ??????? ?????? ?????? ????? ??????? :wink:

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

<table width="734" cellspacing="0" cellpadding="2" border="0" align="center">
  <tr>
   <td align="right" valign="bottom"><span class="nav"><a href="{U_INDEX}" class="nav"><img src="templates/mozaks/images/arrow2.gif" border="0" alt="Laman Utama" hspace="3" /> {L_INDEX}</a></span></td>
  </tr>
</table>

<table cellspacing="0" cellpadding="0" border="0" width="734" align="center" height=20 background="templates/mozaks/images/hometop.png">
<tr><td align="center" width="100%" valign="middle"></td>
</tr></table>
<table align="center" width="734" cellpadding="2" cellspacing="1" border="0" class="forumline">
  <tr>
   <td colspan="3" bgcolor=#8BABDD height=18><span class="mozakstitle">  <FONT class="mozakstitle" COLOR="white">{L_NAME_WELCOME} {U_NAME_LINK}</FONT></span></td>
  </tr>
  <tr>
   <td align="center" valign="middle"> {AVATAR_IMG} </td>
   <td align="right" width="60%"><span class="gensmall">
   <!-- BEGIN switch_user_logged_in -->
   <a href="{U_PRIVATEMSGS}" class="mainmenu"><img src="templates/mozaks/images/dot.gif" border="0" hspace="3" />{PRIVATE_MESSAGE_INFO}<img src="templates/mozaks/images/pm.gif" border="0" hspace="3" /></a><BR>
   <!-- END switch_user_logged_in -->
   <!-- BEGIN switch_user_logged_in -->
   <img src="templates/mozaks/images/dot.gif" border="0" hspace="3" />{LAST_VISIT_DATE}<br />
   <!-- END switch_user_logged_in -->
   <img src="templates/mozaks/images/dot.gif" border="0" hspace="3" />{CURRENT_TIME}</span><BR>
   <!-- BEGIN switch_user_logged_in -->
   <a href="{U_PROFILE}" class="mainmenu"><img src="templates/mozaks/images/prof.gif" border="0" hspace="3" /><B>{L_PROFILE}</B></a> 
   <!-- END switch_user_logged_in -->
   <!-- BEGIN switch_user_logged_out -->
   <a href="{U_REGISTER}" class="mainmenu"><img src="templates/mozaks/images/prof.gif" border="0" hspace="3" /><B>{L_REGISTER}</B></a> 
   <!-- END switch_user_logged_out -->
   <a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="templates/mozaks/images/lo.gif" border="0" hspace="3" /><B>{L_LOGIN_LOGOUT}</B></a> 
   
<!-- BEGIN switch_user_logged_out -->
<table cellpadding="0" cellspacing="3" border="0">
   <tr>
<form method="post" action="{S_LOGIN_ACTION}">
     <td class="row1" valign="middle" height="28"><span class="gensmall">???
      ????????
      <input class="post" type="text" name="username" size="10" /> ????
      ??????
      <input class="post" type="password" name="password" size="10" /> ??????
      ???? ???
      <input class="text" type="checkbox" name="autologin" /> 
      <input type="submit" class="mainoption" name="login" value="{L_LOGIN}" />
      </span></td>
   </tr></form>
  </table>
<!-- END switch_user_logged_out -->
   </td>
   <td align="right" class="gensmall" width="60%">
      <!-- BEGIN switch_user_logged_in -->
      <img src="templates/mozaks/images/dot.gif" border="0" hspace="3" /> <a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a> 
      <br /><img src="templates/mozaks/images/dot.gif" border="0" hspace="3" /> <a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a> 
      <br />
      <!-- END switch_user_logged_in -->
      <img src="templates/mozaks/images/dot.gif" border="0" hspace="3" /> <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a> 
      <BR><img src="templates/mozaks/images/dot.gif" border="0" hspace="3" /> <a href="{U_MARK_READ}" class="gensmall">{L_MARK_FORUMS_READ}</a> </td>
  </tr>
</table><table border="0" cellpadding="4" {DISPLAY} cellspacing="1" width="100%" class="forumline">
   <tr>
     <th colspan="2" align="center" height="25" class="thCornerL" nowrap="nowrap">
      <font color="#FFFFFF">?????? ?????</font></th>
     <th width="50" align="center" class="thTop" nowrap="nowrap"> {L_REPLIES} </th>
     <th width="50" align="center" class="thTop" nowrap="nowrap"> {L_VIEWS} </th>
   </tr>
   <!-- BEGIN featurerow -->
   <tr>
     <td class="row1" align="center" valign="middle" width="20"><img src="{featurerow.TOPIC_FOLDER_IMG}" width="19" height="18" alt="{featurerow.L_TOPIC_FOLDER_ALT}" title="{featurerow.L_TOPIC_FOLDER_ALT}" /></td>
     <td class="row1" width="100%"><span class="topictitle">{featurerow.NEWEST_POST_IMG}{featurerow.TOPIC_TYPE}<a href="{featurerow.U_VIEW_TOPIC}" class="topictitle">{featurerow.TOPIC_TITLE}</a></span><span class="gensmall"><br />
      {featurerow.GOTO_PAGE}</span></td>
     <td class="row2" align="center" valign="middle"><span class="postdetails">{featurerow.REPLIES}</span></td>
     <td class="row2" align="center" valign="middle"><span class="postdetails">{featurerow.VIEWS}</span></td>
   </tr>
   <!-- END featurerow -->
   <!-- BEGIN switch_no_topics -->
   <tr>
     <td class="row1" colspan="6" height="30" align="center" valign="middle"><span class="gen">{L_NO_TOPICS}</span></td>
   </tr>
   <!-- END switch_no_topics -->

  </table>

<table cellspacing="0" cellpadding="0" border="0" width="734" align="center" height=18 background="templates/mozaks/images/msgbottom.png">
<tr><td align="center" width="100%" valign="middle"></td>
</tr></table>

<TABLE align=center height=6>
<TR>
   <TD></TD>
</TR>
</TABLE>
<!-- BEGIN catrow -->
<table cellspacing="0" cellpadding="0" border="0" width="734" align="center" height=20 background="templates/mozaks/images/hometop.png">
<tr><td align="center" width="100%" valign="middle">
   <font size="1" color="#5178DD"><b>www.syrianstars.net </b></font></td>
</tr></table>

<table width="734" cellpadding="0" cellspacing="1" border="0" class="forumline" align="center">
<tr>
   <th colspan="2" width="430" align=left><FONT COLOR="white">   {L_FORUM}</FONT></th>
   <th width="50"> <FONT COLOR="white">{L_TOPICS}</FONT> </th>
   <th width="50"> <FONT COLOR="white">{L_POSTS}</FONT> </th>
   <th width="200"> <FONT COLOR="white">{L_LASTPOST}</FONT> </th>
  </tr>
<tr>
   <td class="catLeft" colspan="2" height="20">{catrow.CAT_ICON}<span class="cattitle">  <a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></span></td>
   <td class="rowpic" colspan="3" align="right"> </td>
  </tr>
<!-- BEGIN forumrow -->
  <tr>
   <td class="row1" align="center" valign="middle" height="40"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="46" height="25" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
   <td class="row1" width="100%" height="40">{catrow.forumrow.FORUM_ICON}<span class="forumlink"><a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink"><img src="templates/mozaks/images/arrow_orange.gif" border="0" hspace="3" />{catrow.forumrow.FORUM_NAME}</a>
   <br /></span> <span class="genmed">{catrow.forumrow.FORUM_DESC}
   <br /></span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
   <td class="row2" align="center" valign="middle" height="40"><span class="gensmall">{catrow.forumrow.TOPICS}</span></td>
   <td class="row2" align="center" valign="middle" height="40"><span class="gensmall">{catrow.forumrow.POSTS}</span></td>
   <td class="row2" align="center" valign="middle" height="40" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
  </tr>
<!-- END forumrow -->
</table>
<table cellspacing="0" cellpadding="0" border="0" width="734" align="center" height=18 background="templates/mozaks/images/msgbottom.png">
<tr><td align="center" width="100%" valign="middle"></td>
</tr></table>
<TABLE align=center height=10>
<TR>
   <TD></TD>
</TR>
</TABLE>
<!-- END catrow -->
<table cellspacing="0" cellpadding="0" border="0" width="734" align="center" height=20 background="templates/mozaks/images/hometop.png">
<tr><td align="center" width="100%" valign="middle"></td>
</tr></table>
<table align="center" width="734" cellpadding="2" cellspacing="1" border="0" class="forumline">
  <tr>
   <td colspan="3" bgcolor=#8BABDD height=18><span class="mozakstitle">  <a href="{U_VIEWONLINE}" class="mozakstitle"><FONT class="mozakstitle" COLOR="white">{L_WHO_IS_ONLINE}</FONT></a></span></td>
  </tr>
  <td align="center" valign="middle"><img src="templates/mozaks/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
   <td align="right" colspan="2"><span class="gensmall">{TOTAL_USERS_ONLINE}
   <br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}
</br>
{LAST_VISIT_USER_LIST}
</span>
</td>
</tr>
  <!--
// ****************************
// MOD: Show last visited users
// BEGIN: AFTER, ADD
// ****************************
//-->
  <tr>
   <td class="row1" align="right" colspan="3">
   	<span class="gensmall">{LAST_VISIT_USER_LIST}</span>
   </td>
  </tr>
<!--
// ****************************
// MOD: Show last visited users
// END: AFTER, ADD
// ****************************
//-->
<tr>
   <td colspan="3" bgcolor=#8BABDD height=18><span class="mozakstitle">  <font color="#FFFFFF">???????</font></span></td>
  </tr>
  <tr>
   <td align="center" valign="middle"><img src="templates/mozaks/images/stats.gif" alt="???C???E" /></td>
   <td align="right" width="70%"><span class="gensmall">{TOTAL_POSTS}<br /><b><img src=images/heart.gif >{NEWEST_USER}</font></span><font size="1">
    </font><b><img src=images/heart.gif ></span>
   </td>
   <td align="right" valign="bottom"></td>
  </tr>
  </table>

<table cellspacing="0" cellpadding="0" border="0" width="734" align="center" height=18 background="templates/mozaks/images/msgbottom.png">
<tr><td align="center" width="100%" valign="middle"></td>
</tr></table>

<br clear="all" />

<table cellspacing="3" border="0" align="center" cellpadding="0">
  <tr>
   <td width="20" align="center"><img src="templates/mozaks/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="templates/mozaks/images/folder_big.gif" alt="{L_NO_NEW_POSTS}" /></td>
   <td><span class="gensmall">{L_NO_NEW_POSTS}</span></td>
  </tr>
</table>

صورة العضو الرمزية
Zero_Cool
عضو فعال
عضو فعال
مشاركات: 868
اشترك في: الجمعة ديسمبر 23, 2005 8:55 pm
اتصال:

مشاركةبواسطة Zero_Cool » السبت يونيو 02, 2007 2:00 am

????? ?????? ??? ?????? ?? ?? ??????? ?????? ???
منتديات نجوم سوريا
http://www.souriastars.com

صورة

صورة العضو الرمزية
Zero_Cool
عضو فعال
عضو فعال
مشاركات: 868
اشترك في: الجمعة ديسمبر 23, 2005 8:55 pm
اتصال:

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

مشاركةبواسطة Zero_Cool » الأحد يونيو 17, 2007 9:15 pm

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

??? index_body

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

<table width="98%" cellspacing="0" cellpadding="2" border="0" align="center">
  
  <tr> 
	<td align="right" valign="bottom"><span class="gensmall">
	<!-- BEGIN switch_user_logged_in -->
	{LAST_VISIT_DATE}<br />
	<!-- END switch_user_logged_in -->
	{CURRENT_TIME}<br /></span><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
	<td align="right" valign="bottom" class="gensmall">
		<!-- BEGIN switch_user_logged_in -->
		<a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br /><a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a><br />
		<!-- END switch_user_logged_in -->
		<table border="0" cellpadding="4" {DISPLAY} cellspacing="1" width="100%" class="forumline">
	<tr> 
	  <th colspan="2" align="center" height="25" class="thCornerL" nowrap="nowrap">????????? ???????</th>
	  <th width="50" align="center" class="thTop" nowrap="nowrap"> {L_REPLIES} </th>
	  <th width="50" align="center" class="thTop" nowrap="nowrap"> {L_VIEWS} </th>
	</tr>
	<!-- BEGIN featurerow -->
	<tr> 
	  <td class="row1" align="center" valign="middle" width="20"><img src="{featurerow.TOPIC_FOLDER_IMG}" width="19" height="18" alt="{featurerow.L_TOPIC_FOLDER_ALT}" title="{featurerow.L_TOPIC_FOLDER_ALT}" /></td>
	  <td class="row1" width="100%"><span class="topictitle">{featurerow.NEWEST_POST_IMG}{featurerow.TOPIC_TYPE}<a href="{featurerow.U_VIEW_TOPIC}" class="topictitle">{featurerow.TOPIC_TITLE}</a></span><span class="gensmall"><br />
		{featurerow.GOTO_PAGE}</span></td>
	  <td class="row2" align="center" valign="middle"><span class="postdetails">{featurerow.REPLIES}</span></td>
	  <td class="row2" align="center" valign="middle"><span class="postdetails">{featurerow.VIEWS}</span></td>
	</tr>
	<!-- END featurerow -->
	<!-- BEGIN switch_no_topics -->
	<tr> 
	  <td class="row1" colspan="6" height="30" align="center" valign="middle"><span class="gen">{L_NO_TOPICS}</span></td>
	</tr>
	<!-- END switch_no_topics -->

  </table>

<table width="98%" cellpadding="2" cellspacing="1" border="0" class="forumline" align="center">
  <tr> 
	<th colspan="2" class="thCornerL" height="25" nowrap="nowrap"> {L_FORUM} </th>
	<th width="50" class="thTop" nowrap="nowrap"> {L_TOPICS} </th>
	<th width="50" class="thTop" nowrap="nowrap"> {L_POSTS} </th>
	<th class="thCornerR" nowrap="nowrap"> {L_LASTPOST} </th>
  </tr>
  <!-- BEGIN catrow -->
  <tr> 
	<td class="catHead" colspan="6" height="20"><span class="cattitle">   <a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></span></td>
	  </tr>
  <!-- BEGIN forumrow -->
  <tr> 
	<td class="row1" align="center" valign="middle" height="30"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="32" height="32" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
	<td class="row1" width="100%" height="35" onMouseOver=this.style.backgroundColor="#F9FBFD" onMouseOut=this.style.backgroundColor="ffffff"><span class="forumlink"><script language="JavaScript">FolderStart('{catrow.forumrow.FORUM_FOLDER_IMG}');</script> <b>?</b> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><script language="JavaScript">FolderEnd();</script><br />
	  </span>   <span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
	  </span>  <span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
	<td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.TOPICS}</span></td>
	<td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.POSTS}</span></td>
	<td class="row2" align="center" valign="middle" height="50" nowrap="nowrap"> <span class="posttext">{catrow.forumrow.LAST_POST}</span></td>
  </tr>
  <!-- END forumrow -->
  <!-- END catrow -->
</table>

<table width="98%" cellspacing="0" border="0" align="center" cellpadding="2">
  <tr> 
 	<td align="right">
 	<!-- BEGIN switch_user_logged_in -->
 		<span class="gensmall"><a href="{U_MARK_READ}" class="postdetails">{L_MARK_FORUMS_READ}</a></span>
 	<!-- END switch_user_logged_in -->
 	</td>
	<td align="right"><span class="postdetails">{S_TIMEZONE}</span></td>
  </tr>
</table>

<table width="98%" cellpadding="3" cellspacing="1" border="0" class="forumline" align="center">
  <tr> 
	<td class="catHead" colspan="2" height="27"><span class="cattitle"><class="cattitle">   ?statistikler</span></td>
  </tr>
  <tr> 
	<td class="row1" align="center" valign="middle" rowspan="4"><img src="templates/Anatolia/theme/imageset/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
	<td class="row1" align="right" width="100%"><span class="gensmall">{TOTAL_POSTS}<br />{TOTAL_USERS}<br />{NEWEST_USER}</span>	</td>
  </tr>
</table>
</br>
<table width="98%" cellpadding="3" cellspacing="1" border="0" class="forumline" align="center">
  <tr> 
	<td class="catHead" colspan="2" height="28"><span class="cattitle"><a href="{U_VIEWONLINE}" class="cattitle">   {L_WHO_IS_ONLINE}</a></span></td>
  </tr>
  <tr> 
	<td class="row1" align="center" valign="middle" rowspan="4"><img src="templates/Anatolia/theme/imageset/comminity.gif" alt="{L_WHO_IS_ONLINE}" /></td>
	<td class="row1" align="right" width="100%"><span class="gensmall">{TOTAL_USERS_ONLINE}<br />{RECORD_USERS}<br /><b>{LOGGED_IN_USER_LIST}</b></span></td>
  </tr>
  <tr> 
	<td class="row1" align="right" width="100%"><span class="gensmall">[ {L_WHOSONLINE_ADMIN} ]   [ {L_WHOSONLINE_MOD} ]</span></td>
  </tr>
</table>

<table width="98%" cellpadding="1" cellspacing="1" border="0" align="center">
<tr>
	<td align="right" valign="top"><span class="postdetails">{L_ONLINE_EXPLAIN}</span></td>
</tr>
</table>
<table width="98%" cellspacing="0" border="0" align="center" cellpadding="2">
  <tr>
    <td align="center">  </td>
    <td align="right" width="50%"> 
      <!-- BEGIN switch_user_logged_out -->
      <table border="0" cellpadding="2" cellspacing="0">
        <form method="post" action="{S_LOGIN_ACTION}">
          <tr> 
            <td nowrap align="right"> 
<span class="gensmall">Giri? i?in kullan?c? ad? ve ?ifre:</span><br />
              <input class="post" type="text" name="username" size="12">
              <input class="post" type="password" name="password" size="10" maxlength="32">
		<!-- BEGIN switch_allow_autologin -->
              <span class="gensmall"><b>Beni hat?rla</b></span> 
              <input class="text" type="checkbox" name="autologin" value="ON">
		<!-- END switch_allow_autologin -->
              <input type="submit" class="liteoption" name="login" value="{L_LOGIN}">
              <br />
            </td>
          </tr>
        </form>
      </table>
      <!-- END switch_user_logged_out -->
    </td>
  </tr>
</table>

<br clear="all" />

<table cellspacing="3" border="0" align="center" cellpadding="0">
  <tr> 
	<td width="20" align="center"><img src="templates/Anatolia/theme/imageset/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="templates/Anatolia/theme/imageset/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="templates/Anatolia/theme/imageset/folder_locked_big.gif" alt="{L_FORUM_LOCKED}" /></td>
	<td><span class="gensmall">{L_FORUM_LOCKED}</span></td>
  </tr>
</table>

منتديات نجوم سوريا
http://www.souriastars.com

صورة

صورة العضو الرمزية
Zero_Cool
عضو فعال
عضو فعال
مشاركات: 868
اشترك في: الجمعة ديسمبر 23, 2005 8:55 pm
اتصال:

مشاركةبواسطة Zero_Cool » الاثنين يونيو 18, 2007 1:03 am

????? ???????? ?? ??????? ????? !!
منتديات نجوم سوريا
http://www.souriastars.com

صورة

صورة العضو الرمزية
hani1984
عضو جديد
عضو جديد
مشاركات: 85
اشترك في: الأربعاء نوفمبر 29, 2006 2:27 pm

مشاركةبواسطة hani1984 » الأحد يوليو 15, 2007 9:08 pm

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

صورة العضو الرمزية
MH
عضو فعال
عضو فعال
مشاركات: 567
اشترك في: الاثنين أغسطس 07, 2006 5:27 pm
مكان: الدار البيضاء - المغرب
اتصال:

مشاركةبواسطة MH » الاثنين يوليو 16, 2007 6:36 pm

صورة
صورة
صورة

صورة العضو الرمزية
Zero_Cool
عضو فعال
عضو فعال
مشاركات: 868
اشترك في: الجمعة ديسمبر 23, 2005 8:55 pm
اتصال:

مشاركةبواسطة Zero_Cool » الثلاثاء يوليو 17, 2007 11:09 am

??? ?????? hani1984,
???? ??????? ?? (( ???? ?? )) ?????
???? ??????? ???? ??? ??????? ?????? ..


??? ?????? MH,
?? ??? ????????? ??? ?? ????
???? ?????? ???? ??? ?????
???????? ??? ?? ??? ??????? ????? phpbbarabia
???? ???? ??????? ???? ??????
صورة
منتديات نجوم سوريا
http://www.souriastars.com

صورة

صورة العضو الرمزية
MH
عضو فعال
عضو فعال
مشاركات: 567
اشترك في: الاثنين أغسطس 07, 2006 5:27 pm
مكان: الدار البيضاء - المغرب
اتصال:

مشاركةبواسطة MH » الثلاثاء يوليو 17, 2007 1:14 pm

So you Should Go to
??? ?? ??? ??????? ????? phpbbarabia
to Look for Support
صورة

صورة العضو الرمزية
Zero_Cool
عضو فعال
عضو فعال
مشاركات: 868
اشترك في: الجمعة ديسمبر 23, 2005 8:55 pm
اتصال:

مشاركةبواسطة Zero_Cool » الثلاثاء يوليو 17, 2007 3:29 pm

????? ???? ?????? ?????? ?? ??????? ?? ????? ?
منتديات نجوم سوريا
http://www.souriastars.com

صورة

صورة العضو الرمزية
Garebooo
المشرف العام
المشرف العام
مشاركات: 7407
اشترك في: السبت مارس 26, 2005 6:12 am
مكان: phpBB Arabia
اتصال:

(( ????? ))

مشاركةبواسطة Garebooo » الجمعة يوليو 20, 2007 4:33 am

????? Zero_Cool

?????? ?? phpBBArabia ?? ???? ????? ??????


????? : ?? ???? ????? ????? ??? ??? ???? ??? ???? phpBB Group ???????? ?????? ????????? ? phpBBArabia ???????? ?????? ? ????? ????? ????? ???



http://www.phpbbarabia.com/rules.php


??? ??????? ??? ???? !


?????
Garebooo
من فضلك استخدم نموذج طلب الدعم عند اضافة مشكلتك
بعد حل مشكلتك فضلاً ضع [ مجابة ] في عنوان الموضوع حتى يتنظم الموقع بشكل اكبر

صورة العضو الرمزية
Zero_Cool
عضو فعال
عضو فعال
مشاركات: 868
اشترك في: الجمعة ديسمبر 23, 2005 8:55 pm
اتصال:

مشاركةبواسطة Zero_Cool » الجمعة يوليو 20, 2007 11:12 pm

????? ?? ??? ?????? ??? ???????
???? ??? ?? ???? ?? ??? ????? ??? ????? ?????? ??????? ?? ??? Cpanel ??? ???? ?? ?? ?? ??????
??? ???? ????? ??? ???????
???? ???? !
منتديات نجوم سوريا
http://www.souriastars.com

صورة


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

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

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