[ ! ] مطلوب هاك آخر عشرة غير شكل ...من الخبراء

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

المشرف: alhitary

صورة العضو الرمزية
أرسطاليس
عضو جديد
عضو جديد
مشاركات: 5
اشترك في: الخميس أكتوبر 06, 2005 7:14 pm

[ ! ] ????? ??? ??? ???? ??? ??? ...?? ???????

مشاركةبواسطة أرسطاليس » الثلاثاء أكتوبر 24, 2006 6:51 pm

?????? ?????

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

??? ???? ??? ???? ?? ???? ?????? ?????? ?? ???? ???? ???? ???? ???? ???? ????? ??? ?? ??????? ,
???? ?? ????????? ????? ??? ??????? ?????? ?? ?????? ??? ???? phpbb ???? ??? ???? ?? ?????? ???? ??? ???????? ?? ????? ??????? ??? ???? ????????? ??? ?? ???? ?? ???
?? ????? ?? ????? ?? ???? block ?????? ???? ??? ?????

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


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

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

<?php

########################################################################
# PHP-Nuke Block: Center Forum Block v.9		           		     #
# Made for PHP-Nuke 6.5						                 #
#                                                                      #
# Made by coldblooded http://www.nukemods.com                          #
########################################################################
# This program is free software. You can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License.       #
# If you modify this, let me know for fun. =)                          #
########################################################################

if (eregi("block-LastPostsForum.php",$PHP_SELF)) {
    Header("Location: index.php");
    die();
}

define("_FBTOPIC","ÇáãæÖæÚ");
define("_FBANSWER","ÑÏæÏ");
define("_FBAUTHOR","ÇáßÇÊÈ");
define("_FBVIEWS","ÞÑÇÁÉ");
define("_FBLASTPOST","ÇÎÑ ÑÏ");

global $prefix, $dbi, $sitename, $admin, $ThemeSel, $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4;

$HideViewReadOnly = 1;

$Last_New_Topics  = 4;
$show = "  <tr>
    <td height=\"5\" </a></td>
  </tr>
</table>";


$Count_Topics = 0;
$Topic_Buffer = "";
$result = sql_query( "SELECT topic_id, forum_id, topic_last_post_id, topic_title, topic_poster, topic_views, topic_replies, topic_moved_id FROM ".$prefix."_bbtopics ORDER BY topic_last_post_id DESC", $dbi );
while( list( $topic_id, $forum_id, $topic_last_post_id, $topic_title, $topic_poster, $topic_views, $topic_replies, $topic_moved_id ) = sql_fetch_row( $result, $dbi ) )

{
   $skip_display = 0;
   if( $HideViewReadOnly == 1 )
   {
      $result1 = sql_query( "SELECT auth_view, auth_read FROM ".$prefix."_bbforums where forum_id = '$forum_id'", $dbi );
      list( $auth_view, $auth_read ) = sql_fetch_row( $result1, $dbi );
      if( ( $auth_view != 0 ) or ( $auth_read != 0 ) ) { $skip_display = 1; }
   }

   if( $topic_moved_id != 0 )
   {
	  // Shadow Topic !!
      $skip_display = 1;
   }

   if( $skip_display == 0 )
   {
	  $Count_Topics += 1;

$result2 = sql_query("SELECT username, user_id FROM ".$prefix."_users where user_id='$topic_poster'", $dbi);
list($username, $user_id)=sql_fetch_row($result2, $dbi);
$avtor=$username;
$sifra=$user_id;

$result3 = sql_query("SELECT poster_id, FROM_UNIXTIME(post_time,'%d/%m/%Y om %H:%i') as post_time FROM ".$prefix."_bbposts where post_id='$topic_last_post_id'", $dbi);
list($poster_id, $post_time)=sql_fetch_row($result3, $dbi);

$result4 = sql_query("SELECT username, user_id FROM ".$prefix."_users where user_id='$poster_id'", $dbi);
list($username, $user_id)=sql_fetch_row($result4, $dbi);

            	          $viewlast .="  <tr>
    <td height=\"20\" nowrap bgcolor=$bgcolor1 ><img src=\"modules/Forums/templates/subSilver/images/folder_new.gif\" border=\"0\" /></td>
    <td width=\"100%\" bgcolor=$bgcolor1 > <a href=\"modules.php?name=Forums&file=viewtopic&t=$topic_id#$topic_last_post_id\">$topic_title</a></td>
    <td align=\"center\" bgcolor=$bgcolor1 >$topic_replies</td>
    <td align=\"center\" bgcolor=$bgcolor1 ><a href=\"modules.php?name=Forums&file=profile&mode=viewprofile&u=$sifra\">$avtor</a></td>
    <td align=\"center\" bgcolor=$bgcolor1 >$topic_views</td>
    <td align=\"left\" nowrap bgcolor=$bgcolor1 ><font size=\"6\"><i>  $post_time </i></font><br>
    <a href=\"modules.php?name=Forums&file=profile&mode=viewprofile&u=$user_id\">$username</a> <a href=\"modules.php?name=Forums&file=viewtopic&p=$topic_last_post_id#$topic_last_post_id\"><img src=\"modules/Forums/templates/subSilver/images/icon_latest_reply.gif\" border=\"0\"></a></td>
  </tr>";
}

   if( $Last_New_Topics == $Count_Topics ) { break 1; }

}

    $content .= "<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"0\">
    <th height=\"18\" colspan=\"2\" align=\"center\" nowrap bgcolor=$bgcolor2><font class=\"block-title\"><strong>"._FBTOPIC."</strong></font></th>
    <th width=\"25\" align=\"center\" nowrap bgcolor=$bgcolor2><font class=\"block-title\"><strong>"._FBANSWER."</strong></font></th>
    <th width=\"40\" align=\"center\" nowrap bgcolor=$bgcolor2><font class=\"block-title\"><strong>"._FBAUTHOR."</strong></font></th>
    <th width=\"45\" align=\"center\" nowrap bgcolor=$bgcolor2><font class=\"block-title\"><strong>"._FBVIEWS."</strong></font></th>
    <th align=\"center\" nowrap bgcolor=$bgcolor2><font class=\"block-title\"><strong>"._FBLASTPOST."</strong></font></th>";
    $content .= "$viewlast";

 $content .= "$show";

?>

???? ??? ??? ????? :D




saanina
عضو شرف
عضو شرف
مشاركات: 2726
اشترك في: الاثنين يونيو 09, 2003 11:14 am
مكان: ...
اتصال:

مشاركةبواسطة saanina » الجمعة أكتوبر 27, 2006 2:17 am

????? ...
?? ??????? ?? ??? ??? ???? ???? ?? ???? ??????? ??? ????? ?? ??? ????? ??? ?? ?????..
:wink:
??? ???? ??? ???? ?? ???? ?????? ?????? ?? ???? ???? ???? ???? ???? ???? ????? ??? ?? ??????? ,
??? ????? ???? ??? ???? AC ??? ?? ?????? ... ???? ??? ????? .. ????? ?? ?? ????? :D

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

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


???? ???? ??? ??????? 8)
????
صورة

:idea: ----------
[الإنسان لا يدرك قيمة الأشياء المجانيه التي تعرض له ..
ويتعامل معها بإستخفاف .. أو على الأقل يشعر أنها حق
له .. أو واجب على الطرف الآخر ...]

صورة العضو الرمزية
أرسطاليس
عضو جديد
عضو جديد
مشاركات: 5
اشترك في: الخميس أكتوبر 06, 2005 7:14 pm

مشاركةبواسطة أرسطاليس » الاثنين أكتوبر 30, 2006 9:07 pm

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

<IFRAME WIDTH=100% height=100% FRAMEBORDER=0
SRC="10phpBB2.php" scrolling="no" name="I1"></IFRAME>

???? ???? /
<IFRAME WIDTH=100% height=100% FRAMEBORDER=0
SRC="http://www.xxxx.net/phpbb/10phpBB2.php" scrolling="no" name="I1"></IFRAME>

????? ????:D

صورة العضو الرمزية
خليجي
عضو فعال
عضو فعال
مشاركات: 510
اشترك في: الأحد مايو 08, 2005 3:40 am
مكان: السعودية - الشرقية
اتصال:

مشاركةبواسطة خليجي » الاثنين أكتوبر 30, 2006 10:39 pm

??????? ???? saanina

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


?????? ??
???? ????...???? ??? ???????8)
منتديات محمد بن راضي:
http://rady.43i.net


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

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

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