PHPRetro Stats Page

Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    Enthusiast Pix is offline
    MemberRank
    Sep 2010 Join Date
    Toronto,OntarioLocation
    49Posts

    happy PHPRetro Stats Page

    Ay, Ragezone

    Today i will be Re-Releasing The PHPRetro Stats Page. The reason why the first one released from Davidaap to GrandCoder had an Little Error So me and Grand sat down and fixed it up and put the boxes diffrently (Makes it nicer) So Here you go
    PHP Code:
    <?php
    /*#######################################################
    #+#Copyright RZ coders 2010 by GrandCoder , StronGFaith and PixLite#+#
    #+#Copyright BC&D Best Coders and Designers 2010 by StroNGFaith
    , amber and GrandCoder#+#
    #######################################################*/

     
    $page['allow_guests'] = true; require_once('./includes/core.php'); require_once('./includes/session.php'); $data = new community_sql$lang->addLocale("community.community");  $page['id'] = "Stats"$page['name'] = "Stats"$page['bodyid'] = "Stats"$page['cat'] = "community";  require_once('./templates/community_header.php'); ?> 
                                                      <div id="container">
            <div id="content" style="position: relative" class="clearfix">
        <div id="column1" class="column">

                                    <div class="habblet-container " id="">
                                                    <div class="cbb clearfix pixellightblue ">

                                                            <h2 class="title">Click Stats
                                                            </h2>

                                                    <div id="not-found-looking-for" class="clearfix">
                                    <center><b>Statistics Hotel</b><br> 
    Users online: <?php echo GetOnlineCount(); ?> <br> 
    Members:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalleden FROM users") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalleden']; 
    ?>
    <br />Rooms:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalkamers FROM rooms") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalkamers']; 
    ?>
    <br />Badges:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalbadges FROM users_badges") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalbadges']; 
    ?>
    <br />Favorite rooms:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalfavouritekamers FROM users_favourites") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalfavouritekamers']; 
    ?>
    <br />furniture:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalmeubels FROM furniture") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalmeubels']; 
    ?>
    <br />furniture in the catalog:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalmeubels FROM catalogue_items") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalmeubels']; 
    ?>
    <br /><br> 
    <b>Statistics Website</b><br> 
    forum topics:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalforumtopics FROM   cms_forum_threads") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalforumtopics']; 
    ?>
    <br />==forum posts:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalforumreacties FROM   cms_forum_posts") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalforumreacties']; 
    ?>
    <br />questboek messages:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalgastenboekberichten FROM  cms_guestbook") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalgastenboekberichten']; 
    ?>
    <br />tags:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantaltags FROM cms_tags") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantaltags']; 
    ?>
    <br /> 
     
    </div> 



                                            </div>
                                    </div>
                                    <script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>

    </div>
    <div id="column2" class="column">
                                    
                                    <div class="habblet-container ">
                                                    <div class="cbb clearfix pixellightblue ">

                                                            <h2 class="title">Account Information
                                                            </h2>

                                                    <div class="box-content">
    <b>About <?php echo $user->user("name"); ?></b><br> 
    Motto: <?php echo $user->user("mission"); ?><br />Credits: <?php echo $user->user("credits"); ?>
        <br />
    IPAdress: <?php echo $_SERVER["REMOTE_ADDR"]; ?><br /><br> 
    Style: <img alt="<?php echo $user->user("name"); ?>" src="<?php echo $user->avatarURL("self","b,3,3,sml,1,0"); ?>" width="64" height="110" /> 
    small style: <img alt="<?php echo $user->user("name"); ?>" src="<?php echo $user->avatarURL("self","s,3,3,sml,1,0"); ?>" width="33" height="56" /> 
    </div> 
    </a>

    <p class="clear last">
    </p>
    </center>
    </div>


    <script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>   </div> </div> </div> <?php require_once('./templates/community_footer.php'); ?>
    Hope u enjoy

    Credits:

    Davidaap - 95% For The Base
    GrandCoder And Pix- 5% for fixing a little Error and changing minor things. (colors, Arrangements,etc...)
    Last edited by Pix; 17-10-10 at 09:30 PM.


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

    Re: PHPRetro Stats Page

    Nothing New..

  3. #3
    Account Upgraded | Title Enabled! Sledmore is offline
    MemberRank
    Jun 2009 Join Date
    1,133Posts

    Re: PHPRetro Stats Page

    Theres no new header there? I'm getting bored of you now, Sorry but I am..

    Thanks anyway.

    -EDIT- You changed the top bit? You only did a page, You don't need full on credits on there. Wow.
    Last edited by Sledmore; 17-10-10 at 09:10 PM.

  4. #4
    Account Upgraded | Title Enabled! GrandCoder is offline
    MemberRank
    Jul 2010 Join Date
    BramptonLocation
    413Posts

    Re: PHPRetro Stats Page

    Quote Originally Posted by Shacobesaurus View Post
    Nothing New..
    Yeah there is really... if u use it and see u will see the dirrence its basically just for PHPRetro And if u really check theres not a huge diffrence but the Charector Stats Are beside not below not a big diffrence but stop hating tbh and say its good or its ok just need more work or some shit no hatez And Images Here u go


    Original:


    ill post updated soon

    ---------- Post added at 07:21 PM ---------- Previous post was at 07:18 PM ----------

    Quote Originally Posted by Sledmore View Post
    Theres no new header there? I'm getting bored of you now, Sorry but I am..

    Thanks anyway.

    -EDIT- You changed the top bit? You only did a page, You don't need full on credits on there. Wow.

    Ayy... I talked to Davidaap and i told him the prob stop wioth the negative comments 0.- he just said he and me and others changed it a bit so actually test de damn thing peoples wbefore commenting u can find a pic here

    clickhotel.sytes.net/stats.php

    Any who stop baggin the man is just commin into the community and u guys are not showing any ragezone spirit and this is his 1st release he will get better so CHILLAX

  5. #5
    Account Upgraded | Title Enabled! Sledmore is offline
    MemberRank
    Jun 2009 Join Date
    1,133Posts

    Re: PHPRetro Stats Page

    Quote Originally Posted by GrandCoder View Post
    Yeah there is really... if u use it and see u will see the dirrence its basically just for PHPRetro And if u really check theres not a huge diffrence but the Charector Stats Are beside not below not a big diffrence but stop hating tbh and say its good or its ok just need more work or some shit no hatez And Images Here u go


    Original:


    ill post updated soon

    ---------- Post added at 07:21 PM ---------- Previous post was at 07:18 PM ----------




    Ayy... I talked to Davidaap and i told him the prob stop wioth the negative comments 0.- he just said he and me and others changed it a bit so actually test de damn thing peoples wbefore commenting u can find a pic here

    clickhotel.sytes.net/stats.php

    Any who stop baggin the man is just commin into the community and u guys are not showing any ragezone spirit and this is his 1st release he will get better so CHILLAX
    WHAT THE FUCK ARE YOU ON..

    The credits say you're apart of it, therefore we have reasons to flame, And your telling us else, Also, You changed the PHPretro credits in that page,

    Also, You didn't give us the header, the main file ain't the header..

    -EDIT- Went to your site, goes to another site, and Also, Its got the same site as ragezone?
    Last edited by Sledmore; 17-10-10 at 09:38 PM.

  6. #6
    Iron like a Lion in Zion! vLife is offline
    Super ModRank
    Apr 2009 Join Date
    The BahamasLocation
    3,788Posts

    Re: PHPRetro Stats Page

    Someone learned the simplicity of HTML & PHP.


    >.>

  7. #7
    Enthusiast Pix is offline
    MemberRank
    Sep 2010 Join Date
    Toronto,OntarioLocation
    49Posts

    Re: PHPRetro Stats Page

    :o im a learner i promise i will do better next time im using my bro's acc Any ways i was testing but in not the real pix :o. He told me dont go back on. and he told me apologize

    ---------- Post added at 08:04 PM ---------- Previous post was at 08:02 PM ----------

    :O hmmm ............
    Last edited by Pix; 17-10-10 at 10:03 PM.

  8. #8
    Member ILitex is offline
    MemberRank
    Oct 2010 Join Date
    TorontoLocation
    91Posts

    Re: PHPRetro Stats Page

    It looks Good. Small Edit but Still Good 8/10.

  9. #9
    League of Legends <3 toperwin is offline
    MemberRank
    Jan 2009 Join Date
    313Posts

    Re: PHPRetro Stats Page

    it isnt davidaap123 95%,...
    becouse i made it >,< read the credits at hims thread,...
    Credits:
    TopErwin - 99% (for coding)
    Davidaap - 1% (for releasing)

    sow i think,...
    90% me and 5% davidaap123? ;p

  10. #10
    Member ILitex is offline
    MemberRank
    Oct 2010 Join Date
    TorontoLocation
    91Posts

    Re: PHPRetro Stats Page

    Quote Originally Posted by toperwin View Post
    it isnt davidaap123 95%,...
    becouse i made it >,< read the credits at hims thread,...
    Credits:
    TopErwin - 99% (for coding)
    Davidaap - 1% (for releasing)

    sow i think,...
    90% me and 5% davidaap123? ;p
    Yh But, This release does look good. I know he didnt make it but as he said its a small edit. So people should just calm down.

  11. #11
    Banned oldschoolowner is offline
    BannedRank
    Jun 2010 Join Date
    In a HomeLocation
    686Posts

    Re: PHPRetro Stats Page

    Quote Originally Posted by Pix View Post
    Ay, Ragezone

    Today i will be Re-Releasing The PHPRetro Stats Page. The reason why the first one released from Davidaap to GrandCoder had an Little Error So me and Grand sat down and fixed it up and put the boxes diffrently (Makes it nicer) So Here you go
    PHP Code:
    <?php
    /*#######################################################
    #+#Copyright RZ coders 2010 by GrandCoder , StronGFaith and PixLite#+#
    #+#Copyright BC&D Best Coders and Designers 2010 by StroNGFaith
    , amber and GrandCoder#+#
    #######################################################*/

     
    $page['allow_guests'] = true; require_once('./includes/core.php'); require_once('./includes/session.php'); $data = new community_sql$lang->addLocale("community.community");  $page['id'] = "Stats"$page['name'] = "Stats"$page['bodyid'] = "Stats"$page['cat'] = "community";  require_once('./templates/community_header.php'); ?> 
                                                      <div id="container">
            <div id="content" style="position: relative" class="clearfix">
        <div id="column1" class="column">

                                    <div class="habblet-container " id="">
                                                    <div class="cbb clearfix pixellightblue ">

                                                            <h2 class="title">Click Stats
                                                            </h2>

                                                    <div id="not-found-looking-for" class="clearfix">
                                    <center><b>Statistics Hotel</b><br> 
    Users online: <?php echo GetOnlineCount(); ?> <br> 
    Members:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalleden FROM users") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalleden']; 
    ?>
    <br />Rooms:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalkamers FROM rooms") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalkamers']; 
    ?>
    <br />Badges:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalbadges FROM users_badges") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalbadges']; 
    ?>
    <br />Favorite rooms:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalfavouritekamers FROM users_favourites") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalfavouritekamers']; 
    ?>
    <br />furniture:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalmeubels FROM furniture") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalmeubels']; 
    ?>
    <br />furniture in the catalog:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalmeubels FROM catalogue_items") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalmeubels']; 
    ?>
    <br /><br> 
    <b>Statistics Website</b><br> 
    forum topics:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalforumtopics FROM   cms_forum_threads") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalforumtopics']; 
    ?>
    <br />==forum posts:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalforumreacties FROM   cms_forum_posts") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalforumreacties']; 
    ?>
    <br />questboek messages:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantalgastenboekberichten FROM  cms_guestbook") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantalgastenboekberichten']; 
    ?>
    <br />tags:
    <?php 
    $query 
    mysql_query("SELECT COUNT(*) AS aantaltags FROM cms_tags") or die(mysql_error()); 
    $data mysql_fetch_assoc($query); 

    echo 
    $data['aantaltags']; 
    ?>
    <br /> 
     
    </div> 



                                            </div>
                                    </div>
                                    <script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>

    </div>
    <div id="column2" class="column">
                                    
                                    <div class="habblet-container ">
                                                    <div class="cbb clearfix pixellightblue ">

                                                            <h2 class="title">Account Information
                                                            </h2>

                                                    <div class="box-content">
    <b>About <?php echo $user->user("name"); ?></b><br> 
    Motto: <?php echo $user->user("mission"); ?><br />Credits: <?php echo $user->user("credits"); ?>
        <br />
    IPAdress: <?php echo $_SERVER["REMOTE_ADDR"]; ?><br /><br> 
    Style: <img alt="<?php echo $user->user("name"); ?>" src="<?php echo $user->avatarURL("self","b,3,3,sml,1,0"); ?>" width="64" height="110" /> 
    small style: <img alt="<?php echo $user->user("name"); ?>" src="<?php echo $user->avatarURL("self","s,3,3,sml,1,0"); ?>" width="33" height="56" /> 
    </div> 
    </a>

    <p class="clear last">
    </p>
    </center>
    </div>


    <script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>   </div> </div> </div> <?php require_once('./templates/community_footer.php'); ?>
    Hope u enjoy

    Credits:

    Davidaap - 95% For The Base
    GrandCoder And Pix- 5% for fixing a little Error and changing minor things. (colors, Arrangements,etc...)
    First off, you should tell them where to paste the code. Like in me.php or etc. Second, People would like if you would post pictures. Addon: Thanks Grand for actually taking a pic and posting it. Thanks!

  12. #12
    Member ILitex is offline
    MemberRank
    Oct 2010 Join Date
    TorontoLocation
    91Posts

    Re: PHPRetro Stats Page

    Quote Originally Posted by oldschoolowner View Post
    First off, you should tell them where to paste the code. Like in me.php or etc. Second, People would like if you would post pictures. Addon: Thanks Grand for actually taking a pic and posting it. Thanks!
    For Basic Coders this aint hard. The only reason to to tell people where to put this page is if there noobs. :P

  13. #13
    Valued Member Fag is offline
    MemberRank
    Oct 2010 Join Date
    United StatesLocation
    129Posts

    Re: PHPRetro Stats Page

    Thanks for releasing

  14. #14
    Garry's Mod is addictive! Law is offline
    MemberRank
    Dec 2009 Join Date
    NorwayLocation
    993Posts

    Re: PHPRetro Stats Page

    Quote Originally Posted by ILitex View Post
    For Basic Coders this aint hard. The only reason to to tell people where to put this page is if there noobs. :P

    yeah, but there is no noobs on RaGEZONE right? (I'm sarkastick if you didnt kno):)

  15. #15
    Banned oldschoolowner is offline
    BannedRank
    Jun 2010 Join Date
    In a HomeLocation
    686Posts

    Re: PHPRetro Stats Page

    Quote Originally Posted by reptilon View Post
    yeah, but there is no noobs on RaGEZONE right? (I'm sarkastick if you didnt kno):)
    lol wow



Page 1 of 2 12 LastLast

Advertisement