قسم الشروحات و البرامج المستخدمة في عمل السيرفرات الخاصة [ قسم متخصص فى شروحات و البرامج في عمل السيرفرات الخاصة ] [ يرجى عدم وضع الأسئلة والاستفسارات في هذا القسم ] |
|
أدوات الموضوع | انواع عرض الموضوع |
16-08-2015, 05:51 AM | #16 | ||||||||||
|
شكراً يا شباب على الردود |
||||||||||
|
16-08-2015, 12:00 PM | #17 | ||||||||||
|
من فضضلكو الرابط واقف الي حمل الويب يرفعو تاني انا محتاجو |
||||||||||
|
17-08-2015, 01:29 AM | #18 | |||||||||||
|
اقتباس:
عفوا ,,, لايمكنك مشاهده الروابط لانك غير مسجل لدينا [ للتسجيل اضغط هنا ] |
|||||||||||
|
18-08-2015, 01:06 AM | #19 | ||||||||||
|
السايت فية حاجة غلط عفوا ,,, لايمكنك مشاهده الروابط لانك غير مسجل لدينا [ للتسجيل اضغط هنا ] |
||||||||||
|
18-08-2015, 07:50 AM | #20 | |||||||||||
|
اقتباس:
|
|||||||||||
|
21-08-2015, 04:35 AM | #21 | ||||||||||
|
لما بدوس continue بيظهرى الى مكتوب فى الصورة دة pre_error in c/wamp وبقيت الكلام زى منتا شايف |
||||||||||
|
22-08-2015, 12:50 AM | #22 | ||||||||||
|
Please Delete the Install Directory! ايه دا طيب !!! |
||||||||||
|
22-08-2015, 08:58 PM | #23 | ||||||||||
|
Up |
||||||||||
|
27-08-2015, 11:29 AM | #24 | ||||||||||
|
تسلم ع الموضوع |
||||||||||
|
31-08-2015, 03:40 PM | #25 | |||||||||||
|
اقتباس:
|
|||||||||||
|
31-08-2015, 03:41 PM | #26 | |||||||||||
|
اقتباس:
|
|||||||||||
|
03-09-2015, 12:11 AM | #27 | ||||||||||
|
ياريت من المشرف يمسح الموصوع دة والله السيت كلو .php و انا كنت حطو و اخترقني و عمل لنفسو user و رفع الداتا بتعتي ع elitepvpers |
||||||||||
|
03-09-2015, 01:52 AM | #28 | |||||||||||
|
اقتباس:
كود بلغة HTML:
<aside id="right"> <article> <h1 class="top">Guild View</h1> <section class="body"> <center><br /><br /> <?php mssql_select_db($gamedb); if($fnc->secure($_GET['name'], 3)) { if($fnc -> numRows("select * from _Guild where Name='$_GET[name]'") == 0) { echo "Guild with such name not found."; } else { $GuildData = $fnc->fetchArray($fnc->exec("select * from _Guild where Name='$_GET[name]'")); $GuildMembers = $fnc -> exec("select * from _GuildMember where GuildID='$GuildData[ID]' order by MemberClass asc,Contribution DESC,GuildWarKill DESC,CharLevel DESC,GP_Donation DESC"); /* for guild Gold add those lines : <td align='center'>Gold</td> <td align='center'>$GuildData[Gold]</td> */?> <table class="nice_table" width='90%' border='0' align='center' cellpadding='0' cellspacing='0'> <tr> <td ><b>Name</b></td> <td ><b class="color-green"><?php echo $GuildData[Name];?></b></td> </tr> <tr> <td ><b>Level</b></td> <td ><?php echo $GuildData[Lvl];?></td> </tr> <tr> <td ><b>Points</b></td> <td ><?php echo $GuildData[GatheredSP];?></td> </tr> <tr> <td ><b>Foundation</b></td> <td ><?php echo $GuildData[FoundationDate];?></td> </tr> </table> <table class="nice_table" width='90%' border='0' align='center' cellpadding='0' cellspacing='0'> <tr> <td width='5%' ><b>#</td> <td width='5%' ><b>Race</b></td> <td width='15%' ><b>Charname</b></td> <td width='15%' ><b>Nick</b></td> <td width='10%' ><b>Level</b></td> <td width='15%' ><b>Donation</b></td> <td width='15%' ><b>Guild War Kills</b></td> <td width='15%' ><b>Guild War Killed</b></td> <td width='5%' ><b>Type</b></td> </tr> <?php $n = 1; while($row = mssql_fetch_array($GuildMembers)) { $cName = $fnc->charnameByCharID($row['CharID']); $szNickname = ""; $nRefObjID = $fnc -> getRow("select RefObjID from _Char where CharName16='$cName'"); $icon = "".Race($nRefObjID).""; $memberType = ""; if($row['MemberClass'] == 0) $memberType = "<font class='color-red'>Master</font>"; else $memberType = "Member"; if(empty($row['Nickname'])) $szNickname = "<font color='blue'>NONE</font>"; else $szNickname = $row['Nickname'];?> <tr> <td ><?php echo $n;?></td> <td ><?php echo $icon;?></td> <td ><a target="_blank" href='?page=itemrank&name=<?php echo $cName;?>'><b class="color-green"><?php echo $cName;?></a></td> <td ><?php echo $szNickname;?></td> <td ><?php echo $row[CharLevel];?></td> <td ><?php echo $row[GP_Donation];?></td> <td ><?php echo $row[GuildWarKill];?></td> <td ><?php echo $row[GuildWarKilled];?></td> <td ><?php echo $memberType;?></td> </tr> <? $n++; } echo "</table>"; } } else echo "Invalid guild name."; ?> </tr> </table> <table width='90%' border='0' align='center' cellpadding='0' cellspacing='0'> <tr> <center><td ><a href="?page=ranking">Click Here To Back To Ranking Page .</a></td> </tr> </table> <br /><br /></center> </section> </article> </aside> كود بلغة HTML:
<?php if(realpath(__FILE__) == realpath($_SERVER['SCRIPT_FILENAME'])) { header('HTTP/1.0 404 Not Found'); exit; } ?> <aside id="right"> <article> <h1 class="top"># <?php Echo"$servername";?> , View Player Items</h1> <section class="body"> <center><br /><br /> <table width='90%' border='0' align='center' cellpadding='0' cellspacing='0'> <tr> <td class="down"><b>Char Name</b></td> <td class="down"><b>Image</b></td> <td class="down"><b>Item Name</b></td> <td class="down"><b>Type</b></td> <td class="down"><b>Level</b></td> <td class="down"><b>Plus Value</b></td> </tr> <?php if(isset($_GET['name']) && addslashes($fnc->secure($_GET['name']))) { $nCharName = $_GET['name']; mssql_select_db($gamedb); $query = $fnc->exec(" select it.OptLevel, ch.RefObjID, ch.CharName16, obj.AssocFileIcon128, obj.Country, obj.CodeName128 ,obj.ReqLevel1 , item.ItemClass , adv.nOptValue ,es.EndTextString from _Items as it LEFT JOIN [dbo].[_Inventory] as inv ON it.ID64 = inv.ItemID LEFT JOIN [dbo].[_Char] as ch ON inv.CharID = ch.CharID LEFT JOIN [dbo].[_RefObjCommon] as obj ON it.RefItemID = obj.ID LEFT JOIN [dbo].[_RefObjItem] as item ON obj.Link = item.ID LEFT JOIN [dbo].[_BindingOptionWithItem] as adv ON it.ID64 = adv.nItemDBID LEFT JOIN [dbo].[C_EquipStrings] as es on obj.NameStrID128 = es.TextString where ch.CharName16 = '$nCharName' and inv.Slot between 0 and 12 and inv.Slot != 8 ") or die (mssql_get_last_message()); $charObj = $fnc->fetchArray($query); echo '<img src="image.php?faces='.$charObj['RefObjID'].'.GIF" alt="" /></img>'; while ($row = $fnc->fetchArray($query)){ echo '<tr>'; echo '<td class="down2">'.$row['CharName16'].'</td>'; if($row['AssocFileIcon128'] == 'xxx'){ echo '<td class="down2"><img src="image.php?item=item\clean.png" width="32" height="32" alt=""/></td>'; } else { echo '<td class="down2"><img src="image.php?item='.$row['AssocFileIcon128'].'.png" width="32" height="32" alt=""/></td>'; } if($row['CodeName128'] == 'DUMMY_OBJECT'){ echo '<td class="down2">-</td>'; } else { echo '<td class="down2">'.$row['EndTextString'].'</td>'; } $totalvalue = $row['OptLevel']+$row['nOptValue']; $advonly = $row['nOptValue']; if($row['CodeName128'] == 'ITEM_ETC_AMMO_ARROW_01' || $row['CodeName128'] == 'ITEM_ETC_AMMO_BOLT_01' || $row['CodeName128'] == 'DUMMY_OBJECT'){ echo '<td class="down2">-</td>'; } else { $itemclass = $row['ItemClass']; switch($itemclass) { case 27: echo '<td class="down2">Normal</td>'; break; case 28: echo '<td class="down2">Seal Of Star</td>'; break; case 29: echo '<td class="down2">Seal Of Moon</td>'; break; case 30: echo '<td class="down2">Seal Of Sun</td>'; break; default: echo '<td class="down2">Normal</td>'; break; }} if($row['CodeName128'] == 'ITEM_ETC_AMMO_ARROW_01' || $row['CodeName128'] == 'ITEM_ETC_AMMO_BOLT_01' || $row['CodeName128'] == 'DUMMY_OBJECT'){ echo '<td class="down2">-</td>'; } else { echo '<td class="down2">'.$row['ReqLevel1'].'</td>'; } if($row['CodeName128'] == 'ITEM_ETC_AMMO_ARROW_01' || $row['CodeName128'] == 'ITEM_ETC_AMMO_BOLT_01' || $row['CodeName128'] == 'DUMMY_OBJECT'){ echo '<td class="down2">-</td>'; } else { echo '<td class="down2">'.$totalvalue.''; switch($advonly) { case "NULL": break; case 1: echo '+(1) ADV</td>'; break; case 2: echo '+(2) ADV</td>'; break; }} echo '</tr>'; } } else { echo 'Character Name Is invalid.'; } ?> </table> <table width='90%' border='0' align='center' cellpadding='0' cellspacing='0'> <tr> <td class="down2"><a href="?page=ranking">Click Here To Back To Ranking Page .</a></td> </tr> </table> <br /><br /></center> </section> </article> </aside> يا ريت تجيب دليل قبل لما تقول حاجة زى كدة |
|||||||||||
|
03-09-2015, 08:39 PM | #29 | ||||||||||
|
يا باشا أخش علي الكونفج أزاي أرجو الرد |
||||||||||
|
03-09-2015, 11:17 PM | #30 | ||||||||||
|
مش دة انت بردو ولا واحد تاني انا مش عاوز اغلط بس علشان في مندي محترم و دة my datebase و دة الموقع explosion-sro.tk و بعد ما رجاعت الباسورد لاقيت ال .php دة في السيت عفوا ,,, لايمكنك مشاهده الروابط لانك غير مسجل لدينا [ للتسجيل اضغط هنا ] |
||||||||||
التعديل الأخير تم بواسطة MarOz ; 03-09-2015 الساعة 11:56 PM
|
يتصفح الموضوع حالياً : 2 (0 عضو و 2 زائر) | |
|
|
المواضيع المتشابهه | ||||
الموضوع | كاتب الموضوع | المنتدى | الردود | آخر مشاركة |
قـصـة رائـعة جـــدا افـعل الخـــير وكـن صـادقـا وافى بالعــهد | Subway | القـسـم الإسـلامـى الـعـام | 3 | 18-11-2013 11:15 PM |
[جــديـد] فواصـل وبـدايـات ونهـايـات للمـواضيـع | ╣VendeTTa╠ | قـسـم الـتـرحـيـب و الـتـعـارف | 11 | 26-07-2013 01:00 PM |
• تـحديثات جـديدة و رائـعة فى اللعبة قـادمة قــريبا • | Wally | أخـبـار سـيـلك رود أون لايـن | 69 | 13-04-2012 12:10 PM |
مـا تـيـجـى نـاخد و نــدى بــشــكـل ودى .. المــجـمـوع (د) | _BabY LoVe_ | قـسـم الـريـاضـة الـعـامـة | 18 | 14-07-2011 12:17 AM |