Me.php Badge Display (PHPRetro)

Page 1 of 3 123 LastLast
Results 1 to 25 of 75
  1. #1
    8-bit Bitch Slapper Alpha Ducky is offline
    MemberRank
    Mar 2007 Join Date
    In My HouseLocation
    2,436Posts

    Me.php Badge Display (PHPRetro)

    Never seen this released yet, so here it goes.
    It is the badge display on me.php, like on HabboRP.

    Screenie:


    Includes:
    Folders - so you don't have to look everywhere to place the files.
    Me.php - cause you need it
    ReadMe.txt - I wanted to add this
    Screenie - Idk

    Virus Scans:
    Badge Display PHPRetro - http://www.virustotal.com/analisis/d...38e-1273413265
    Badge Display HoloCMS - http://www.virustotal.com/analisis/0...b47-1273413340
    Badge Display PHPRetroRP (Rasta's) - http://www.virustotal.com/analisis/d...abf-1273413492

    Downloads:
    Badge Display PHPRetro - http://www.sendspace.com/file/i33wnp
    Badge Display HoloCMS - http://www.sendspace.com/file/8pkmoy
    Badge Display PHPRetroRP (Rasta's) - http://www.sendspace.com/file/qlslcy

    Enjoy Haboons.

    EDIT---------------

    UberCMS

    Screenie:


    Includes:
    Folders - so you don't have to look everywhere to place the files.
    ReadMe.txt - I wanted to add this
    Screenie - Idk

    Virus Scan:
    http://www.virustotal.com/analisis/0...83b-1278369030

    Download:
    http://www.sendspace.com/file/wdchkt
    Last edited by Alpha Ducky; 23-08-10 at 01:21 PM. Reason: Added downloads for HoloCMS and PHPRetroRP


  2. #2
    yerro Adde is offline
    MemberRank
    Feb 2010 Join Date
    none ur bizzLocation
    2,731Posts

    Re: Me.php Badge Display (PHPRetro)

    Damn, very good release Ricky. I love this!


    First posts =D

  3. #3
    Valued Member richie4394 is offline
    MemberRank
    Apr 2009 Join Date
    131Posts

    Re: Me.php Badge Display (PHPRetro)

    Very nice, just added, pretty awesome! :D

    add me msn = richieskater4394@hotmail.com

  4. #4
    Crawl Me Maybe Crawl is offline
    MemberRank
    Aug 2009 Join Date
    Behind YouLocation
    2,142Posts

    Re: Me.php Badge Display (PHPRetro)

    Very nice work ricky,

  5. #5
    Valued Member richie4394 is offline
    MemberRank
    Apr 2009 Join Date
    131Posts

    Re: Me.php Badge Display (PHPRetro)

    how to change image link?

  6. #6
    Ultra Light Beam Makarov is offline
    MemberRank
    Apr 2010 Join Date
    GothamLocation
    3,622Posts

    Re: Me.php Badge Display (PHPRetro)

    This was made by iRetro
    But Except he has Health,Bank,Coin Ammount On There.

  7. #7
    Proficient Member Serb101 is offline
    MemberRank
    May 2007 Join Date
    197Posts

    Re: Me.php Badge Display (PHPRetro)

    ....Beautiful, Only way of explaining it.. xD
    Code:
    <?php
    /*================================================================+\
    || # PHPRetro - An extendable virtual hotel site and management
    |+==================================================================
    || # Copyright (C) 2009 Yifan Lu. All rights reserved.
    || # http://www.yifanlu.com
    || # Parts Copyright (C) 2009 Meth0d. All rights reserved.
    || # http://www.meth0d.org
    || # All images, scripts, and layouts
    || # Copyright (C) 2009 Sulake Ltd. All rights reserved.
    |+==================================================================
    || # PHPRetro is provided "as is" and comes without
    || # warrenty of any kind. PHPRetro is free software!
    || # License: GNU Public License 3.0
    || # http://opensource.org/licenses/gpl-license.php
    \+================================================================*/
    
    require_once('./includes/core.php');
    require_once('./includes/session.php');
    $data = new me_sql;
    $lang->addLocale("home.me");
    
    $page['id'] = "me";
    $page['name'] = $lang->loc['pagename.me'];
    $page['bodyid'] = "home";
    $page['cat'] = "home";
    require_once('./templates/community_header.php');
    ?>
    
    <div id="container">
    	<div id="content">
        <div id="column1" class="column">
    				<div class="habblet-container ">
    
    						<div id="container">
    	<div id="content">
        <div id="column1" class="column">
    				<div class="habblet-container ">
    
    						<div id="new-personal-info" style="background-image:url(<?php echo PATH; ?>/web-gallery/v2/images/personal_info/hotel_views/<?php echo $settings->find("site_hotel_image"); ?>)" />
    <div id="badge-back">
            <img src="./web-gallery/v2/images/personal_info/badgeback.png">
            <img src="./web-gallery/v2/images/personal_info/badgeback.png">
            <img src="./web-gallery/v2/images/personal_info/badgeback.png">
            <img src="./web-gallery/v2/images/personal_info/badgeback.png">
            <img src="./web-gallery/v2/images/personal_info/badgeback.png">
    </div>
    <?php
    
        $sql = mysql_query("SELECT * FROM users_badges WHERE userid = '".$user->user['0']."' ORDER BY badgeid ASC LIMIT 5");
        $count = mysql_num_rows($sql);
    ?>
    
    <div id="badge-back">
        <?php
        if($count == 0){
            echo " ";
        }else{
        ?>
        <ul class="badge-back"><br>
    <?php
        while($badgerow = mysql_fetch_assoc($sql)){
                    echo "
    &nbsp; &nbsp;<img src='".$settings->find('site_c_images_path').$settings->find('site_badges_path').$badgerow['badgeid'].".gif'/> &nbsp; "; 
    }
    }
        ?>
    
        </div>
    
    	<div class="enter-hotel-btn">
    <?php if(HotelStatus() == "online"){ ?>
    		<div class="open enter-btn">
    				<a href="<?php echo PATH; ?>/client" target="client" onclick="openOrFocusHabbo(this); return false;"><?php echo $lang->loc['enter.short']; ?><i></i></a>
    			<b></b>
    		</div>
    <?php } else { ?>
    <div class="closed enter-btn">
    	<span><?php echo $lang->loc['closed.short']; ?></span>
    	<b></b>
    </div>
    <?php } ?>
    	</div>
    
    	<div id="habbo-plate">
    		<a href="<?php echo PATH; ?>/profile">
    			<img alt="<?php echo $user->name; ?>" src="<?php echo $user->avatarURL("self","b,3,3,sml,1,0"); ?>" width="64" height="110" />
    		</a>
    	</div>
    
    	<div id="habbo-info">
    		<div id="motto-container" class="clearfix">
    			<strong><?php echo $user->name; ?>:</strong>
    			<div>
    				<?php if($user->user("mission") != ""){ echo $input->unicodeToImage($input->HoloText($user->user("mission"))); } else { echo $lang->loc['change.motto']; } ?>
    
    			</div>
    		</div>
    		<div id="motto-links" style="display: none"><a href="#" id="motto-cancel"><?php echo $lang->loc['cancel']; ?></a></div>
    	</div>
    
    	<ul id="link-bar" class="clearfix">
    		<li class="change-looks"><a href="<?php echo PATH; ?>/profile"><?php echo $lang->loc['change.looks']; ?> &raquo;</a></li>
    		<li class="credits">
    			<a href="<?php echo PATH; ?>/credits"><?php echo $user->user("credits"); ?></a> <?php echo $lang->loc['credits']; ?>
    		</li>
                        <li>
                        <?php $mysql_query = mysql_query("SELECT * FROM users WHERE name = '$user->name'"); $fetch_array = mysql_fetch_array($mysql_query); ?>
    			    Health: <?php echo $fetch_array['health']; ?>/100
    		    </li>
    	</ul>
    
        <div id="habbo-feed">
            <ul id="feed-items">
    
    <?php
    if($serverdb->result($data->select1($user->id), 0) == "1" && $serverdb->result($core->select9($user->id), 0) == 0) {
    $removed = $db->result($db->query("SELECT COUNT(*) FROM ".PREFIX."alerts WHERE userid = '".$user->id."' AND alert = 'clubalert' AND type = '-1'"));
    if($removed < 1){ ?>
    <li id="feed-item-hc-reminder">
        <a href="#" class="remove-feed-item" id="remove-hc-reminder" title="<?php echo $lang->loc['remove.hc.notice']; ?>"><?php echo $lang->loc['remove.hc.notice']; ?></a>
    
    	<div>
    			<?php echo $lang->loc['hc.subscribe.question']; ?>
    	</div>
    	<div id="hc-reminder-buttons" class="clearfix">
    		<a href="#" class="new-button" id="hc-reminder-1" title="31 <?php echo $lang->loc['days']; ?>, 20 <?php echo $lang->loc['credits']; ?>"><b>1 <?php echo $lang->loc['months']; ?></b><i></i></a>
    		<a href="#" class="new-button" id="hc-reminder-2" title="93 <?php echo $lang->loc['days']; ?>, 50 <?php echo $lang->loc['credits']; ?>"><b>3 <?php echo $lang->loc['months']; ?></b><i></i></a>
    		<a href="#" class="new-button" id="hc-reminder-3" title="186 <?php echo $lang->loc['days']; ?>, 80 <?php echo $lang->loc['credits']; ?>"><b>6 <?php echo $lang->loc['months']; ?></b><i></i></a>
    	</div>
    
    </li>
    <script type="text/javascript">
    L10N.put("subscription.title", "<?php echo addslashes($lang->loc['habbo.club']); ?>");
    </script>
    <?php
    }
    }
    
    if($user->user("rank") > 4){
        $sql = $db->query("SELECT COUNT(*) FROM ".PREFIX."help WHERE picked_up = '0'");
        if($db->result($sql) > 0){
                echo "            <li class=\"small\" id=\"feed-group-discussion\">
                    <strong>".$lang->loc['staff.messages']."</strong><br />".$lang->loc['there.are']." <strong><a href=\"".PATH."/housekeeping/help\" target=\"_self\">".$db->result($sql)."</a></strong> ".$lang->loc['help.quries']."
                </li>";
        }
    }
    
    $sql = $db->query("SELECT * FROM ".PREFIX."alerts WHERE userid = '".$user->id."' AND type > -1 ORDER BY id DESC");
        if($db->num_rows($sql) > 0){
    		while($row = $db->fetch_assoc($sql)) {
    	        if($row['type'] == 2){
    				$heading = $lang->loc['notification'];
    	        }else{
    				$heading = $lang->loc['message'];
    			}
    ?>
    			<li id="feed-item-campaign" class="contributed">
    			    <a href="#" class="remove-feed-item" title="<?php echo $lang->loc['remove.notification']; ?>"><?php echo $lang->loc['remove.notification']; ?></a>
    			    <div>
    			            <b><?php echo $heading; ?></b><br />
    			            <?php echo nl2br($input->HoloText($row['alert'],true)); ?>
    			    </div>
    			</li>
    
    <?php
            }
        }
    $dob = $user->user("birth");
    $bits = explode("-", $dob);
    $day = $bits[0];
    $month2 = $bits[1];
    $year2 = $bits[2];
    $date = HoloDate();
    if($day == $date['today'] && $month2 == $date['month']){
    ?>
    			<li id="feed-birthday">
    			    <div>
    			            <?php echo $lang->loc['happy.birthday'].", ".$user->name."!"; ?>
    			    </div>
    			</li>
    <?php
    }
    if($serverdb->num_rows($data->select3($user->id)) != 0){ ?>
    			<li id="feed-notification">
    				<?php echo $lang->loc['you.have']; ?> <a href="<?php echo PATH; ?>/client" onclick="HabboClient.openOrFocus(this); return false;"><?php echo $serverdb->num_rows($data->select3($user->id)); ?> <?php echo $lang->loc['friend.requests']; ?></a> <?php echo $lang->loc['waiting']; ?>
    			</li>
    <?php }
    $cutoff = (time() - 1801);
    $sql = $data->select4($cutoff, $user->id);
    $count = $serverdb->num_rows($sql);
    $i = 0;
    if($db->num_rows($sql) > 0){
    ?>
    			<li id="feed-friends">
    				<?php echo $lang->loc['you.have']; ?> <strong><?php echo $count; ?></strong> <?php echo $lang->loc['friends.online']; ?>
    				<span>
    			<?php while($row = $db->fetch_row($sql)){
    					$i++;
    					echo $row[0];
    					if($i < $count){ echo ", "; }
    					echo "\n";
    				} ?>
    				</span>
    			</li>
    <?php } 
    
    $sql = $data->select14($user->id);
    $i = 0;
    $groups = "";
    while($row = $db->fetch_row($sql)){
    	$row2 = $db->fetch_assoc($db->query("SELECT MAX(".PREFIX."forum_posts.time) AS lastpost_time FROM ".PREFIX."forum_threads,".PREFIX."forum_posts WHERE groupid = '".$row[0]."' LIMIT 1"));
    	if($row2['lastpost_time'] > $user->user("lastvisit")){
    		$i++;
    		$groups = $groups."\n<a href=\"".groupURL($row[0])."/discussions\">".$row[1]."</a>, ";
    	}
    }
    if($i > 0 && $groups != ""){
    $groups = substr($groups,0,-2);
    ?>
                <li class="small" id="feed-group-discussion">
                	<strong><?php echo $i; ?></strong> <?php echo $lang->loc['groups.new.messages']; ?>:
                	<span><?php echo $groups; ?>
                	</span>
                </li>
    <?php } ?>
    
                <li class="small" id="feed-lastlogin">
                    <?php echo $lang->loc['last.online']; ?>:
                    <?php echo date('M j, Y g:i:s A', $user->user("lastvisit")); ?>
                </li>
    
    
            </ul>
        </div>
        <p class="last"></p>
    </div>
    
    <script type="text/javascript">
        HabboView.add(function() {
            L10N.put("personal_info.motto_editor.spamming", "<?php echo addslashes($lang->loc['no.spam']); ?>");
            PersonalInfo.init("");
        });
    </script>
    
    
                    </div>
                    <script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
    				
    <?php $lang->addLocale("widget.campaigns"); ?>
    				<div class="habblet-container ">		
    						<div class="cbb clearfix blue ">
    
    	
    							<h2 class="title"><?php echo $lang->loc['hot.campaigns']; ?>
    							</h2>
    						<div id="hotcampaigns-habblet-list-container">
        <ul id="hotcampaigns-habblet-list">
    <?php
    $i = 0; $sql = $db->query("SELECT * FROM ".PREFIX."campaigns WHERE visible = '1' ORDER BY id DESC");
    while($row = $db->fetch_assoc($sql)){
    if($input->IsEven($i)){ $even = "even"; }else{ $even = "odd"; }
    ?>
    
            <li class="<?php echo $even; ?>">
                <div class="hotcampaign-container">
                    <a href="<?php echo str_replace("%path%",PATH,$row['url']); ?>"><img src="<?php echo str_replace("%path%",PATH,$row['image']); ?>" align="left" alt="" /></a>
                    <h3><?php echo $input->HoloText($row['name'],true); ?></h3>
                    <p><?php echo $input->HoloText($row['desc'],true); ?></p>
    
                    <p class="link"><a href="<?php echo str_replace("%path%",PATH,$row['url']); ?>"><?php echo $lang->loc['go.there']; ?> &raquo;</a></p>
                </div>
            </li>
    
    <?php $i++; } ?>
        </ul>
    </div>
    	
    						
    					</div>
    				</div>
    				<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
    
    </div>
    				<script type='text/javascript'>if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
    <div id="column2" class="column">
    <?php $lang->addLocale("widget.news"); ?>
    				<div class="habblet-container news-promo">
    						<div class="cbb clearfix notitle ">
    
    <?php $sql = $db->query("SELECT * FROM ".PREFIX."news ORDER BY id DESC LIMIT 5");
    $i = 0;
    while($row = $db->fetch_assoc($sql)){
    	$row['summary'] = nl2br($input->HoloText($row['summary'], true));
    	$row['title'] = $input->HoloText($row['title'], true);
    	$row['title_safe'] = $input->stringToURL($input->HoloText($row['title'],true),true,true);
    	$row['date'] = date('M j, Y', $row['time']);
    	$news[$i] = $row;
    	$i++;
    }
    ?>
    						<div id="newspromo">
            <div id="topstories">
    	        <div class="topstory" style="background-image: url(<?php echo $news[0]['header_image']; ?>)">
    	            <h4><?php echo $lang->loc['latest.news']; ?></a></h4>
    	            <h3><a href="<?php echo PATH."/articles/".$news[0]['id']."-".$news[0]['title_safe']; ?>"><?php echo $news[0]['title']; ?></a></h3>
    	            <p class="summary">
    	            <?php echo $news[0]['summary']; ?>
    	            </p>
    	            <p>
    	                <a href="<?php echo PATH."/articles/".$news[0]['id']."-".$news[0]['title_safe']; ?>"><?php echo $lang->loc['read.more']; ?></a>
    	            </p>
    	        </div>
                <div id="topstories-nav" style="display: none"><a href="#" class="prev"><?php echo $lang->loc['news.previous']; ?></a><span>1</span> / 3<a href="#" class="next"><?php echo $lang->loc['news.next']; ?></a></div>
            </div>
            <ul class="widelist">
                <li class="even">
                    <a href="<?php echo PATH."/articles/".$news[1]['id']."-".$news[1]['title_safe']; ?>"><?php echo $news[1]['title']; ?></a><div class="newsitem-date"><?php echo $news[1]['date']; ?></div>
                </li>
                <li class="odd">
                    <a href="<?php echo PATH."/articles/".$news[2]['id']."-".$news[2]['title_safe']; ?>"><?php echo $news[2]['title']; ?></a><div class="newsitem-date"><?php echo $news[2]['date']; ?></div>
                </li>
                <li class="last"><a href="<?php echo PATH; ?>/articles"><?php echo $lang->loc['news.more']; ?></a></li>
            </ul>
    </div>
    <script type="text/javascript">
    	document.observe("dom:loaded", function() { NewsPromo.init(); });
    </script>
    					</div>
    
    				</div>
    <div class="habblet-container ">        
                            <div class="cbb clearfix blue "> 
        
                                <h2 class="title">Where is everyone?</h2> 
    <div class="box-content">
    <table>
         <tr>
            <td width="160px">
              <strong>Room</strong>
            </td>
            <td width="60px">
              <strong>Visitors</strong>
            </td>
            <td width="60px">
              <strong>Room ID</strong>
            </td>
         </tr>
    <?php
    $getTopRooms = mysql_query("SELECT * FROM rooms ORDER BY visitors_now DESC LIMIT 7");
    while($topRooms = mysql_fetch_array($getTopRooms)) {
    echo '<tr>
            <td>
              '.$topRooms['name'].'
            </td>
            <td>
              '.$topRooms['visitors_now'].'
            </td>
            <td>
              '.$topRooms['id'].'
            </td>
         </tr>';
    }
    ?>
    </table>
    </div>
    </div> 
                            
                        </div> 
                    </div> 
    
    				<script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
    
    </div>
    
    <script type="text/javascript">
    	HabboView.add(LoginFormUI.init);
    </script>
    <?php
    
    require('./templates/community_footer.php');
    
    ?>
    For Roleplay PHPRetro Badge Display, Well atleast Rasta's
    Last edited by Serb101; 08-05-10 at 07:42 PM.

  8. #8
    Proficient Member EvilControl is offline
    MemberRank
    May 2010 Join Date
    RaGEZONELocation
    189Posts

    Re: Me.php Badge Display (PHPRetro)

    Thanks , Very Helpful

  9. #9
    8-bit Bitch Slapper Alpha Ducky is offline
    MemberRank
    Mar 2007 Join Date
    In My HouseLocation
    2,436Posts

    Re: Me.php Badge Display (PHPRetro)

    Quote Originally Posted by What? View Post
    Damn, very good release Ricky. I love this!


    First posts =D
    haha Thanx What? ^_^

    Quote Originally Posted by richie4394 View Post
    Very nice, just added, pretty awesome! :D

    add me msn = richieskater4394@hotmail.com
    Thanx and added ;)

    Quote Originally Posted by Crawl View Post
    Very nice work ricky,
    Spank ya Crawl (:

    Quote Originally Posted by richie4394 View Post
    how to change image link?
    say what? lol

    Quote Originally Posted by Him. View Post
    This was made by iRetro
    But Except he has Health,Bank,Coin Ammount On There.
    Pretty much his is for RP :p

    Quote Originally Posted by Serb101 View Post
    ....Beautiful, Only way of explaining it.. xD
    <PHP>
    For Roleplay PHPRetro Badge Display, Well atleast Rasta's
    Thanx and thanx.
    added php to first post :p

    Quote Originally Posted by EvilControl View Post
    Thanks , Very Helpful
    Your welcome and thanx ^_^
    glad you like it.

  10. #10

    herp a derp

    vLife is offline

    Super ModRank
    Apr 2009 Join Date
    The BahamasLocation
    3,814Posts

    Re: Me.php Badge Display (PHPRetro)

    Oh thanks a lot Ricky will use.

  11. #11
    8-bit Bitch Slapper Alpha Ducky is offline
    MemberRank
    Mar 2007 Join Date
    In My HouseLocation
    2,436Posts

    Re: Me.php Badge Display (PHPRetro)

    Quote Originally Posted by Jacinto View Post
    Oh thanks a lot Ricky will use.
    No problem ^_^
    enjoy

  12. #12
    Account Upgraded | Title Enabled! Bonitão is offline
    MemberRank
    May 2009 Join Date
    795Posts

    Re: Me.php Badge Display (PHPRetro)

    This is nice. Excellent work. Just a suggestion, change the padding, so the badges could be more in the center, or just change the size of the box. I can do this, but it's just a suggestion.

  13. #13
    Account Upgraded | Title Enabled! iRetro™ is offline
    MemberRank
    Feb 2010 Join Date
    United KingdomLocation
    558Posts

    Re: Me.php Badge Display (PHPRetro)

    :) Very nice Ricky :P

  14. #14
    8-bit Bitch Slapper Alpha Ducky is offline
    MemberRank
    Mar 2007 Join Date
    In My HouseLocation
    2,436Posts

    Re: Me.php Badge Display (PHPRetro)

    Quote Originally Posted by MeetMeInHabbo View Post
    This is nice. Excellent work. Just a suggestion, change the padding, so the badges could be more in the center, or just change the size of the box. I can do this, but it's just a suggestion.
    I'm not worried about it :p
    But if it bothers other people I'll fix it.

    Quote Originally Posted by iRetro™ View Post
    :) Very nice Ricky :P
    thanx ;p

  15. #15
    Crawl Me Maybe Crawl is offline
    MemberRank
    Aug 2009 Join Date
    Behind YouLocation
    2,142Posts

    Re: Me.php Badge Display (PHPRetro)

    Quote Originally Posted by rickymenier View Post


    Spank ya Crawl (:
    Dont spank me or i'll spank you back


    go on msn :spy:

  16. #16
    Account Upgraded | Title Enabled! VeSa is offline
    MemberRank
    Aug 2008 Join Date
    WebinoFlax worlLocation
    1,224Posts

    Re: Me.php Badge Display (PHPRetro)

    nice ricky

  17. #17
    I'm back! iJay is offline
    MemberRank
    Nov 2008 Join Date
    Down Under ;)Location
    602Posts

    Re: Me.php Badge Display (PHPRetro)

    Very nice Ricky, you are by far one of the best PHP coders out there ;)

  18. #18
    Apprentice minipizza10 is offline
    MemberRank
    May 2010 Join Date
    12Posts

    Re: Me.php Badge Display (PHPRetro)

    Very good :D

    Thanks :P

  19. #19
    Apprentice Luffy is offline
    MemberRank
    May 2010 Join Date
    5Posts

    Re: Me.php Badge Display (PHPRetro)

    Hello , it's possible in holocms ?

  20. #20
    Banned PEjump2 is offline
    BannedRank
    Jan 2010 Join Date
    The NetherlandsLocation
    2,838Posts

    Re: Me.php Badge Display (PHPRetro)

    @Luffy it is , but you need to code it your own.

  21. #21
    I'm back! iJay is offline
    MemberRank
    Nov 2008 Join Date
    Down Under ;)Location
    602Posts

    Re: Me.php Badge Display (PHPRetro)

    Quote Originally Posted by PEjump2 View Post
    @Luffy it is , but you need to code it your own.
    I'm sure if you ask Ricky nice enough, he'll have a crack at it ;)

  22. #22
    8-bit Bitch Slapper Alpha Ducky is offline
    MemberRank
    Mar 2007 Join Date
    In My HouseLocation
    2,436Posts

    Re: Me.php Badge Display (PHPRetro)

    Quote Originally Posted by VeSa View Post
    nice ricky
    Thanx VeSa

    Quote Originally Posted by thebro View Post
    hI, can someone please make THAT for holocms ?
    Added to first port ;)

    Quote Originally Posted by iJay View Post
    Very nice Ricky, you are by far one of the best PHP coders out there ;)
    I wouldn't say that lmao

    Quote Originally Posted by minipizza10 View Post
    Very good :D

    Thanks :P
    Thanks and your welcome ^_^

    Quote Originally Posted by Luffy View Post
    Hello , it's possible in holocms ?
    Yes it is.
    first post ;)

    Quote Originally Posted by PEjump2 View Post
    @Luffy it is , but you need to code it your own.
    not if I already did it lol

    Quote Originally Posted by iJay View Post
    I'm sure if you ask Ricky nice enough, he'll have a crack at it ;)
    Yea haha.

  23. #23
    Proficient Member EvilControl is offline
    MemberRank
    May 2010 Join Date
    RaGEZONELocation
    189Posts

    Re: Me.php Badge Display (PHPRetro)

    Works Fine 10/10

  24. #24
    8-bit Bitch Slapper Alpha Ducky is offline
    MemberRank
    Mar 2007 Join Date
    In My HouseLocation
    2,436Posts

    Re: Me.php Badge Display (PHPRetro)

    Quote Originally Posted by EvilControl View Post
    Works Fine 10/10
    I know haha.
    Thanx though ^_^

  25. #25
    Apprentice Dannyn, is offline
    MemberRank
    Sep 2009 Join Date
    5Posts

    Re: Me.php Badge Display (PHPRetro)

    Nice ricky, ill use this for my retro :)



Page 1 of 3 123 LastLast

Advertisement