Page 5 of 13 FirstFirst 123456789 ... LastLast
Results 41 to 50 of 121
  1. #41
    Join Date
    Apr 2005
    Location
    North Carolina, USA
    Posts
    4,535
    Tokens
    0

    Latest Awards:

    Default

    Anyone Want To Buy Anything.

    Be Serious

  2. #42
    Join Date
    Mar 2005
    Location
    Leeds
    Posts
    3,423
    Tokens
    0

    Latest Awards:

    Default

    Can you link me to any of your non habbo designs?

  3. #43

    Default

    Quote Originally Posted by Luckyrare
    Shut the **** up please, stop spaming.

    ARG... I WAS I WAS ASKING FOR SCREENIES PLS READ. OR LEARN TO. TY. jeese.


    ARRRRRRRRR.

    soooo is there. before i damn explode. :eusa_wall
    Last edited by Always-Think; 27-05-2006 at 07:11 PM.

  4. #44
    Join Date
    Feb 2006
    Posts
    2,185
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by .Track
    PHP Code:
    <?php

    // ## EGO! Switchgear - Hab-World - Functions

    // ## header function
    // ## description: prints the page header with custom variables set
    function print_system_header($page_title,$css=FALSE,$js=FALSE,$int_css=FALSE,$int_js=FALSE)
    {
    echo 
    "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n";
    echo 
    "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n\n";

    echo 
    "<!-- EGO! Switchgear - Designed and Coded by the EGO! boyz -->\n";
    echo 
    "<!-- Don't steal it or i'll set my hyena's on you -->\n\n";

    echo 
    "    <head>\n";
    echo 
    "      <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n";
    echo 
    "      <title>EGO! Switchgear - $page_title</title>\n\n";
          
    echo 
    "      <!-- externals -->\n";
    echo 
    "      <link rel=\"stylesheet\" href=\"includes/template.css\" type=\"text/css\"/>\n";
    echo 
    "        <script language=\"javascript\" src=\"includes/template.js\"></script>\n\n";
    if(
    $css)
    {
    echo 
    "      <link rel=\"stylesheet\" href=\"$css\" type=\"text/css\"/>\n";
    }
    if(
    $js)
    {
    echo 
    "        <script language=\"javascript\" src=\"$js\"></script>\n\n";
    }
    if(
    $int_css)
    {
    echo 
    "      <!-- css -->\n";
    echo 
    "      $int_css\n\n";
    }
    if(
    $int_js)
    {      
    echo 
    "      <!-- javascript -->\n";
    echo 
    "      $int_js\n\n";
    }
    echo 
    "    </head>\n\n";

    echo 
    "<body>\n\n";
    }

    // ## footer function
    // ## description: prints the page footer
    function print_system_footer()
    {
    echo 
    "\n</body>\n";
    echo 
    "</html>";
    }

    // ## nav category
    // ## prints a nav category
    function print_nav_category($divid,$spanid,$btnid,$title)
    {
    *
    REMOVED*

    function 
    print_no_access($where)
    {
    echo 
    "<p align=\"center\"><b>Sorry, you do not have permission to view the $where!!</b></p>";
    }

    function 
    bbcode($string)
    {
      
    $string nl2br(htmlspecialchars($string));
      
    $patterns = array
      (
        
    '`\[b\](.+?)\[/b\]`is',
        
    '`\[i\](.+?)\[/i\]`is',
        
    '`\[u\](.+?)\[/u\]`is',
        
    '`\[strike\](.+?)\[/strike\]`is',
        
    '`\[color=#([0-9]{6})\](.+?)\[/color\]`is',
        
    '`\[img\](.+?)\[/img\]`is',
        
    '`\[url=([a-z0-9]+://)([\w\-]+\.([\w\-]+\.)*[\w]+(:[0-9]+)?(/[^ \"\n\r\t<]*?)?)\](.*?)\[/url\]`si',
        
    '`\[url\]([a-z0-9]+?://){1}([\w\-]+\.([\w\-]+\.)*[\w]+(:[0-9]+)?(/[^ \"\n\r\t<]*)?)\[/url\]`si',
        
    '`\[url\]((www|ftp)\.([\w\-]+\.)*[\w]+(:[0-9]+)?(/[^ \"\n\r\t<]*?)?)\[/url\]`si',
        
    '`\[quote\](.+?)\[/quote\]`is',
        
    '`\[size=([1-6]+)\](.+?)\[/size\]`is'
      
    );

    *
    REMOVED*
    }

    function 
    permission($varname,$user)
    {
      
    $get_user mysql_query("SELECT * FROM `user` WHERE `userid` = '".$user."' LIMIT 1");
      
    $user mysql_fetch_array($get_user);
      if(
    $user['membergroupids']) { $usergroupids explode(',',$user['membergroupids']); }
      if(
    $user['usergroupid']) { $usergroupids[] = $user['usergroupid']; }
      foreach(
    $usergroupids as $id)
      {
      
    $usergroup_query mysql_query("SELECT * FROM `usergroup` WHERE `usergroupid` = '".$id."' LIMIT 1");
      
    $usergroup mysql_fetch_array($usergroup_query);
      
    $get_adminpermissions mysql_query("SELECT ".$varname." FROM `adminpermissions` WHERE `adminpermissionsid` = '".$usergroup['adminpermissions']."' LIMIT 1");
      
    $adminpermissions mysql_fetch_array($get_adminpermissions);
      
    $i[] = $adminpermissions[$varname];
      }
      if(
    in_array('1',$i,true))
      {
      return 
    true;
      }
      else
      {
      return 
    false;
      }
    }

    function 
    redirect($url)
    {
    echo 
    "<script language=\"javascript\">window.location='".$url."'</script>";
    }

    function 
    alert($msg)
    {
    echo 
    "<script language=\"javascript\">alert('".$msg."');</script>";
    }
    ?>
    Just thought i'll let you see their coding skills you decide on how clean/leet they are, to me there not bad
    As i said there coding's explained well in some areas soits easy to edit for newbs. :rolleyes:

  5. #45

    Default

    [QUOTE=.Track]
    Quote Originally Posted by .Track
    [php]<?php

    // ## EGO! Switchgear - Hab-World - Functions

    // ## header function
    // ## description: prints the page header with custom variables set
    function print_system_header($page_title,$css=FALSE,$js=FAL SE,$int_css=FALSE,$int_js=FALSE)
    {
    echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n";
    echo "<html xmlns=\"http://www.w3.org/1999/xhtml\" xmlang=\"en\" lang=\"en\">\n\n";

    echo "<!-- EGO! Switchgear - Designed and Coded by the EGO! boyz -->\n";
    echo "<!-- Don't steal it or i'll set my hyena's on you -->\n\n";

    echo " <head>\n";
    echo " <meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n";
    echo " <title>EGO! Switchgear - $page_title</title>\n\n";

    echo " <!-- externals -->\n";
    echo " <link rel=\"stylesheet\" href=\"includes/template.css\" type=\"text/css\"/>\n";
    echo " <script language=\"javascript\" src=\"includes/template.js\"></script>\n\n";
    if($css)
    {
    echo " <link rel=\"stylesheet\" href=\"$css\" type=\"text/css\"/>\n";
    }
    if($js)
    {
    echo " <script language=\"javascript\" src=\"$js\"></script>\n\n";
    }
    if($int_css)
    {
    echo " <!-- css -->\n";
    echo " $int_css\n\n";
    }
    if($int_js)
    {
    echo " <!-- javascript -->\n";
    echo " $int_js\n\n";
    }
    echo " </head>\n\n";

    echo "<body>\n\n";
    }

    // ## footer function
    // ## description: prints the page footer
    function print_system_footer()
    {
    echo "\n</body>\n";
    echo "</html>";
    }

    // ## nav category
    // ## prints a nav category
    function print_nav_category($divid,$spanid,$btnid,$title)
    {
    *REMOVED*

    function print_no_access($where)
    {
    echo "<p align=\"center\"><b>Sorry, you do not have permission to view the $where!!</b></p>";
    }

    function bbcode($string)
    {
    $string = nl2br(htmlspecialchars($string));
    $patterns = array
    (
    '`\[b\](.+?)\[/b\]`is',
    '`\[i\](.+?)\[/i\]`is',
    '`\[u\](.+?)\[/u\]`is',
    '`\[strike\](.+?)\[/strike\]`is',
    '`\[color=#([0-9]{6})\](.+?)\[/color\]`is',
    '`\[img\](.+?)\[/img\]`is',
    '`\[url=([a-z0-9]+://)([\w\-]+\.([\w\-]+\.)*[\w]+[0-9]+)?(/[^ \"\n\r\t<]*?)?)\](.*?)\[/url\]`si',
    '`\[url\]([a-z0-9]+?://){1}([\w\-]+\.([\w\-]+\.)*[\w]+[0-9]+)?(/[^ \"\n\r\t<]*)?)\[/url\]`si',
    '`\[url\]((www|ftp)\.([\w\-]+\.)*[\w]+[0-9]+)?(/[^ \"\n\r\t<]*?)?)\[/url\]`si',
    '`\

    As i said there coding's explained well in some areas soits easy to edit for newbs. :rolleyes:

    i hope that wasnt aimed at me mr track. and to stay on topic ^.^ any screenies?

  6. #46
    Join Date
    Apr 2005
    Location
    North Carolina, USA
    Posts
    4,535
    Tokens
    0

    Latest Awards:

    Default

    Does anyone want to buy anything or not?

    NO SPAM!

  7. #47
    Join Date
    Feb 2006
    Posts
    2,185
    Tokens
    0

    Latest Awards:

    Default

    im guessing you havent given users enough time "/
    give them a week or so and maybe you will get one customer..

  8. #48

    Default

    ARG. CAN'T JOO READ.


    DOOO YOU HAVE ANY SCREENIES. OR CAN YOU LIST FEATURES.

    damn read it. (.(

  9. #49
    Join Date
    Apr 2005
    Location
    North Carolina, USA
    Posts
    4,535
    Tokens
    0

    Latest Awards:

    Default

    Im Just Saying,

    Im trying to get back on topic to the point of asking questions about products and querying about purchasing

  10. #50

    Default

    well now were gettin something.

    what features does the cms system have? :rolleyes:

Page 5 of 13 FirstFirst 123456789 ... LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •