Anyone Want To Buy Anything.
Be Serious

Anyone Want To Buy Anything.
Be Serious
Can you link me to any of your non habbo designs?
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.
As i said there coding's explained well in some areas soits easy to edit for newbs. :rolleyes:Originally Posted by .Track
Just thought i'll let you see their coding skills you decide on how clean/leet they are, to me there not badPHP 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>";
}
?>
[QUOTE=.Track]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?
Does anyone want to buy anything or not?
NO SPAM!
im guessing you havent given users enough time "/
give them a week or so and maybe you will get one customer..
ARG. CAN'T JOO READ.
DOOO YOU HAVE ANY SCREENIES. OR CAN YOU LIST FEATURES.
damn read it. (.(
Im Just Saying,
Im trying to get back on topic to the point of asking questions about products and querying about purchasing
well now were gettin something.
what features does the cms system have? :rolleyes:
Want to hide these adverts? Register an account for free!