View Full Version : WhosPanel BETA release
-terrior-
30-07-2008, 07:27 AM
Ok i have been working on a Panel but have decided to release what i have done so far!
Please install it and reply with CONSTRUCTIVE feedback
e.g what features could i add
The News System is not currently up and running so you may as well disable that in installation
I did design it for Habboplex (my site) but then i changed it so it was configurable to other sites (please point out if i still have Habboplex written any where)
To download follow link in spoiler :D
http://www.habboplex.com/files/whospanelBETA.zip
Please point out if some features do not work etc.. !
Also if you have a layout i could use please PM me as i do not like the current layout!
Thanx
-terrior-
Thread Closed by brandon (Forum Super Moderator): To prevent arguments and further pointless posts
Calon
30-07-2008, 08:01 AM
Ok i have been working on a Panel but have decided to release what i have done so far!
Please install it and reply with CONSTRUCTIVE feedback
e.g what features could i add
The News System is not currently up and running so you may as well disable that in installation
I did design it for Habboplex (my site) but then i changed it so it was configurable to other sites (please point out if i still have Habboplex written any where)
To download follow link in spoiler :D
http://www.habboplex.com/files/whospanelBETA.zip
Please point out if some features do not work etc.. !
Also if you have a layout i could use please PM me as i do not like the current layout!
Thanx
-terrior-
NICE HOUSEKEEPING RIP! (YOU JUST PROVED THAT YOUR AN IMMENSE CODER!!1)
TOLD CALEB.
What's "CONFIGURATABLE" MEAN?!
RSTurbo
30-07-2008, 08:02 AM
NICE HOUSEKEEPING RIP!
TOLD CALEB.
OWNED.
Tom-743
30-07-2008, 08:10 AM
DON'T CLICK THE LINK ITS A RICK ROLL.
DarrenToogood
30-07-2008, 08:14 AM
No it's not, however from the above post I will not be downloading, as it sounds like a rip.
RyanDOT
30-07-2008, 08:17 AM
As above as well. I won't be be posting.
Because with the replies it be mostly be a rip.
Thought you didn't have a layout as well?
Calon
30-07-2008, 08:19 AM
LMAO +REP TOM! (When I get rep power)
Pixzo
30-07-2008, 08:20 AM
DON'T CLICK THE LINK ITS A RICK ROLL.
OH NOEZZZ I CLICKED IT HELP
Jahova
30-07-2008, 08:20 AM
First of all, if you wanted to succeed, you wouldn't have ripped.
Anyway, Next time you come up with a project, that is YOUR OWN, then post some screenshots in the thread.
And @ Tom -
OH NOES, I'LL HAVE TO WATCH THIS FOREVA COS I DONT KNOW HWO TO STPO IT!11one!!11
Calon
30-07-2008, 08:24 AM
First of all, if you wanted to succeed, you wouldn't have ripped.
Anyway, Next time you come up with a project, that is YOUR OWN, then post some screenshots in the thread.
And @ Tom -
OH NOES, I'LL HAVE TO WATCH THIS FOREVA COS I DONT KNOW HWO TO STPO IT!11one!!11
NAO? LOL.
hes updated file names LOL
his main.php, i mean.. who codes in short tags?! (Caleb, when he was a newbie coder.. THIS GUY TOO! Oh, and maybe rick roll.)
<? session_start();
include 'config.php';
$ip = $_SERVER['REMOTE_ADDR'];
if(!isset($_SESSION['username']) || empty($_SESSION['username']) || $ip!= $_SESSION['ip']) {
session_unset();
session_destroy();
die("Why are you here? <a href='login.php'>Click Here to Login</a>"); }
?>
<?
$username = $_SESSION['username'];
$sql_level_get = "SELECT * FROM user WHERE username='$username'";
$user_info = mysql_fetch_array(mysql_query($sql_level_get));
$level = $user_info['level'];
$config1 = "SELECT * FROM config";
$config = mysql_fetch_array(mysql_query($config1));
$sitename = $config['sitename'];
$news = $config['news'];
$events = $config['events'];
?>
<html>
<head>
<title>
<? echo "$sitename Panel"; ?>
</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript">
/***********************************************
* IFrame SSI script II- © Dynamic Drive DHTML code library (http://www.dynamicdrive.com)
* Visit DynamicDrive.com for hundreds of original DHTML scripts
* This notice must stay intact for legal use
***********************************************/
//Input the IDs of the IFRAMES you wish to dynamically resize to match its content height:
//Separate each ID with a comma. Examples: ["myframe1", "myframe2"] or ["myframe"] or [] for none:
var iframeids=["main", "stats"]
//Should script hide iframe from browsers that don't support this script (non IE5+/NS6+ browsers. Recommended):
var iframehide="yes"
var getFFVersion=navigator.userAgent.substring(navigat or.userAgent.indexOf("Firefox")).split("/")[1]
var FFextraHeight=parseFloat(getFFVersion)>=0.1? 16 : 0 //extra height in px to add to iframe in FireFox 1.0+ browsers
function resizeCaller() {
var dyniframe=new Array()
for (i=0; i<iframeids.length; i++){
if (document.getElementById)
resizeIframe(iframeids[i])
//reveal iframe for lower end browsers? (see var above):
if ((document.all || document.getElementById) && iframehide=="no"){
var tempobj=document.all? document.all[iframeids[i]] : document.getElementById(iframeids[i])
tempobj.style.display="block"
}
}
}
function resizeIframe(frameid){
var currentfr=document.getElementById(frameid)
if (currentfr && !window.opera){
currentfr.style.display="block"
if (currentfr.contentDocument && currentfr.contentDocument.body.offsetHeight) //ns6 syntax
currentfr.height = currentfr.contentDocument.body.offsetHeight+FFextr aHeight;
else if (currentfr.Document && currentfr.Document.body.scrollHeight) //ie5+ syntax
currentfr.height = currentfr.Document.body.scrollHeight;
if (currentfr.addEventListener)
currentfr.addEventListener("load", readjustIframe, false)
else if (currentfr.attachEvent){
currentfr.detachEvent("onload", readjustIframe) // Bug fix line
currentfr.attachEvent("onload", readjustIframe)
}
}
}
function readjustIframe(loadevt) {
var crossevt=(window.event)? event : loadevt
var iframeroot=(crossevt.currentTarget)? crossevt.currentTarget : crossevt.srcElement
if (iframeroot)
resizeIframe(iframeroot.id);
}
function loadintoIframe(iframeid, url){
if (document.getElementById)
document.getElementById(iframeid).src=url
}
if (window.addEventListener)
window.addEventListener("load", resizeCaller, false)
else if (window.attachEvent)
window.attachEvent("onload", resizeCaller)
else
window.onload=resizeCaller
</script>
</head>
<body height="100%" background="images/habbobg.gif">
<div align="center">
<div id="mid">
<br>
<div id="banner"></div>
<table cellspacing="0" cellpadding="0" border="0" height="100%" width="777">
<tr>
<td width="16" valign="top">
</td>
<td width="162" valign="top">
<div id="navtop">
</div>
<div id="navmid">
<table width="95%">
<tr><td>
<div id="navigation">
<center>
<b><u>Navigation</u></b>
<br><br><br>
</center>
<?php
$username = $_SESSION['username'];
$request = mysql_query("SELECT * FROM request WHERE whoto='$username'");
$reqnum = mysql_num_rows($request);
$message = mysql_query("SELECT * FROM pms WHERE sendto='$username'");
$mesnum = mysql_num_rows($message);
?>
<?
if ($level == "Radio DJ"){
?>
<a href="javascript:loadintoIframe('main', 'home.php')">» Home </a><br>
<a href="javascript:loadintoIframe('main', 'request.php')">» View Requests (<? echo"$reqnum" ?>) </a><br>
<a href="javascript:loadintoIframe('main', 'timetable.php')">» Timetable </a><br>
<? if ($events == 'yes'){?>
<a href="javascript:loadintoIframe('main', 'eventtimetable.php')">» Events Timetable </a><br>
<a href="javascript:loadintoIframe('main', 'deleteevent.php')">» Delete Event</a><br>
<? } ?>
<a href="javascript:loadintoIframe('main', 'djsays/setdjsays.php')">» Edit DJ Says </a><br>
<a href="javascript:loadintoIframe('main', 'shoutcast.php')">» View Shoutcast Details </a><br><br>
<b><u>Personal Options</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'stafflist.php')">» View Staff List </a><br>
<a href="javascript:loadintoIframe('main', 'changepass.php')">» Change Password</a><br>
<a href="javascript:loadintoIframe('main', 'changeemail.php')">» Change E-mail </a><br>
<a href="javascript:loadintoIframe('main', 'update.php')">» Update Details </a><br>
<a href="logout.php">» Logout </a><br><br>
<b><u>Messaging</u></b><br><i>Please check regularly</i><br><br>
<a href="javascript:loadintoIframe('main', 'pms/message.php')">» View Messages (<? echo"$mesnum" ?>) </a><br>
<a href="javascript:loadintoIframe('main', 'pms/sendpm.php')">» Send A Message </a><br>
<? } ?>
<?
if ($level == "Head DJ"){
?>
<a href="javascript:loadintoIframe('main', 'home.php')">» Home </a><br>
<a href="javascript:loadintoIframe('main', 'request.php')">» View Requests (<? echo"$reqnum" ?>) </a><br>
<a href="javascript:loadintoIframe('main', 'timetable.php')">» Timetable </a><br>
<? if ($events == 'yes'){?>
<a href="javascript:loadintoIframe('main', 'eventtimetable.php')">» Events Timetable </a><br>
<a href="javascript:loadintoIframe('main', 'deleteevent.php')">» Delete Event</a><br>
<? } ?>
<a href="javascript:loadintoIframe('main', 'djsays/setdjsays.php')">» Edit DJ Says </a><br>
<a href="javascript:loadintoIframe('main', 'shoutcast.php')">» View Shoutcast Details </a><br><br>
<b><u>Personal Options</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'stafflist.php')">» View Staff List </a><br>
<a href="javascript:loadintoIframe('main', 'changepass.php')">» Change Password</a><br>
<a href="javascript:loadintoIframe('main', 'changeemail.php')">» Change E-mail </a><br>
<a href="javascript:loadintoIframe('main', 'update.php')">» Update Details </a><br>
<a href="logout.php">» Logout </a><br><br>
<b><u>Messaging</u></b><br><i>Please check regularly</i><br><br>
<a href="javascript:loadintoIframe('main', 'pms/message.php')">» View Messages (<? echo"$mesnum" ?>) </a><br>
<a href="javascript:loadintoIframe('main', 'pms/sendpm.php')">» Send A Message </a><br>
<? } ?>
<?php
if ($level == "admin"){
?>
<a href="javascript:loadintoIframe('main', 'home.php')">» Home </a><br>
<a href="javascript:loadintoIframe('main', 'request.php')">» View Requests (<? echo"$reqnum" ?>) </a><br>
<a href="javascript:loadintoIframe('main', 'timetable.php')">» Timetable </a><br>
<? if ($events == 'yes'){?>
<a href="javascript:loadintoIframe('main', 'eventtimetable.php')">» Events Timetable </a><br>
<a href="javascript:loadintoIframe('main', 'deleteevent.php')">» Delete Event</a><br>
<? } ?>
<a href="javascript:loadintoIframe('main', 'djsays/setdjsays.php')">» Edit DJ Says </a><br>
<a href="javascript:loadintoIframe('main', 'shoutcast.php')">» View Shoutcast Details </a><br><br>
<b><u>Personal Options</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'stafflist.php')">» View Staff List </a><br>
<a href="javascript:loadintoIframe('main', 'changepass.php')">» Change Password</a><br>
<a href="javascript:loadintoIframe('main', 'changeemail.php')">» Change E-mail </a><br>
<a href="javascript:loadintoIframe('main', 'update.php')">» Update Details </a><br>
<a href="logout.php">» Logout </a><br><br>
<b><u>Messaging</u></b><br><i>Please check regularly</i><br><br>
<a href="javascript:loadintoIframe('main', 'pms/message.php')">» View Messages (<? echo"$mesnum" ?>) </a><br>
<a href="javascript:loadintoIframe('main', 'pms/sendpm.php')">» Send A Message </a><br><br>
<?php
if($news == 'yes'){
?>
<b><u>News System</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'news/addnews.php')"> » Add News</a><br>
<a href="javascript:loadintoIframe('main', 'news/deletenews.php')"> » Delete News </a><br>
<a href="javascript:loadintoIframe('main', 'news/editnews.php')"> » Edit News</a><br><br>
<? } ?>
<b><u>Admin Controls</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'admin/adduser.php')"> » Create Account</a><br>
<a href="javascript:loadintoIframe('main', 'admin/removeuser.php')"> » Delete Account</a><br>
<a href="javascript:loadintoIframe('main', 'admin/editdj.php')"> » Edit Account</a><br>
<? if ($events == 'yes'){?>
<a href="javascript:loadintoIframe('main', 'admin/deleteevents.php')"> » Delete Events</a><br>
<? } ?>
<a href="javascript:loadintoIframe('main', 'admin/editconfig.php')"> » Edit Panel Settings</a><br><br>
<? } ?>
<?php
if ($level == "Radio Manager"){
?>
<a href="javascript:loadintoIframe('main', 'home.php')">» Home </a><br>
<a href="javascript:loadintoIframe('main', 'request.php')">» View Requests (<? echo"$reqnum" ?>) </a><br>
<a href="javascript:loadintoIframe('main', 'timetable.php')">» Timetable </a><br>
<? if ($events == 'yes'){?>
<a href="javascript:loadintoIframe('main', 'eventtimetable.php')">» Events Timetable </a><br>
<a href="javascript:loadintoIframe('main', 'deleteevent.php')">» Delete Event</a><br>
<? } ?>
<a href="javascript:loadintoIframe('main', 'djsays/setdjsays.php')">» Edit DJ Says </a><br>
<a href="javascript:loadintoIframe('main', 'shoutcast.php')">» View Shoutcast Details </a><br><br>
<b><u>Personal Options</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'stafflist.php')">» View Staff List </a><br>
<a href="javascript:loadintoIframe('main', 'changepass.php')">» Change Password</a><br>
<a href="javascript:loadintoIframe('main', 'changeemail.php')">» Change E-mail </a><br>
<a href="javascript:loadintoIframe('main', 'update.php')">» Update Details </a><br>
<a href="logout.php">» Logout </a><br><br>
<b><u>Messaging</u></b><br><i>Please check regularly</i><br><br>
<a href="javascript:loadintoIframe('main', 'pms/message.php')">» View Messages (<? echo"$mesnum" ?>) </a><br>
<a href="javascript:loadintoIframe('main', 'pms/sendpm.php')">» Send A Message </a><br><br>
<b><u>Radio Manager Controls</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'radiodj/admin/adduser.php')"> » Create DJ</a><br>
<a href="javascript:loadintoIframe('main', 'radiodj/admin/removeuser.php')"> » Delete DJ</a><br>
<a href="javascript:loadintoIframe('main', 'radiodj/admin/editdj.php')"> » Edit DJ</a><br>
<? if ($events == 'yes'){?>
<a href="javascript:loadintoIframe('main', 'radiodj/admin/deleteevents.php')"> » Delete Events</a><br><br>
<? } ?>
<? } ?>
<?php
if($news == 'yes'){
?>
<?
if ($level == "News Manager"){
?>
<a href="javascript:loadintoIframe('main', 'home.php')">» Home </a><br><br>
<b><u>News System</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'news/addnews.php')"> » Add News</a><br>
<a href="javascript:loadintoIframe('main', 'news/deletenews.php')"> » Delete News </a><br>
<a href="javascript:loadintoIframe('main', 'news/editnews.php')"> » Edit News</a><br><br>
<b><u>News Manager Options</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'news/admin/adduser.php')"> » Add Reporter</a><br>
<a href="javascript:loadintoIframe('main', 'news/admin/removeuser.php')"> » Delete Reporter</a><br>
<a href="javascript:loadintoIframe('main', 'news/admin/editdj.php')"> » Edit Reporter</a><br><br>
<b><u>Personal Options</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'stafflist.php')">» View Staff List </a><br>
<a href="javascript:loadintoIframe('main', 'changepass.php')">» Change Password</a><br>
<a href="javascript:loadintoIframe('main', 'changeemail.php')">» Change E-mail </a><br>
<a href="javascript:loadintoIframe('main', 'update.php')">» Update Details </a><br>
<a href="logout.php">» Logout </a><br><br>
<b><u>Messaging</u></b><br><i>Please check regularly</i><br><br>
<a href="javascript:loadintoIframe('main', 'pms/message.php')">» View Messages (<? echo"$mesnum" ?>) </a><br>
<a href="javascript:loadintoIframe('main', 'pms/sendpm.php')">» Send A Message </a><br>
<? } ?>
<?
if ($level == "News Reporter"){
?>
<a href="javascript:loadintoIframe('main', 'home.php')">» Home </a><br><br>
<b><u>News System</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'news/addnews.php')"> » Add News</a><br>
<a href="javascript:loadintoIframe('main', 'news/deletenews.php')"> » Delete News </a><br>
<a href="javascript:loadintoIframe('main', 'news/editnews.php')"> » Edit News</a><br><br>
<b><u>Personal Options</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'stafflist.php')">» View Staff List </a><br>
<a href="javascript:loadintoIframe('main', 'changepass.php')">» Change Password</a><br>
<a href="javascript:loadintoIframe('main', 'changeemail.php')">» Change E-mail </a><br>
<a href="javascript:loadintoIframe('main', 'update.php')">» Update Details </a><br>
<a href="logout.php">» Logout </a><br><br>
<b><u>Messaging</u></b><br><i>Please check regularly</i><br><br>
<a href="javascript:loadintoIframe('main', 'pms/message.php')">» View Messages (<? echo"$mesnum" ?>) </a><br>
<a href="javascript:loadintoIframe('main', 'pms/sendpm.php')">» Send A Message </a><br>
<? } ?>
<?
if ($level == "Habbo UK Reporter"){
?>
<a href="javascript:loadintoIframe('main', 'home.php')">» Home </a><br><br>
<b><u>News System</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'news/uk/addnews.php')"> » Add News</a><br>
<a href="javascript:loadintoIframe('main', 'news/uk/editnews.php')"> » Edit News</a><br><br>
<b><u>Personal Options</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'stafflist.php')">» View Staff List </a><br>
<a href="javascript:loadintoIframe('main', 'changepass.php')">» Change Password</a><br>
<a href="javascript:loadintoIframe('main', 'changeemail.php')">» Change E-mail </a><br>
<a href="javascript:loadintoIframe('main', 'update.php')">» Update Details </a><br>
<a href="logout.php">» Logout </a><br><br>
<b><u>Messaging</u></b><br><i>Please check regularly</i><br><br>
<a href="javascript:loadintoIframe('main', 'pms/message.php')">» View Messages (<? echo"$mesnum" ?>) </a><br>
<a href="javascript:loadintoIframe('main', 'pms/sendpm.php')">» Send A Message </a><br>
<? } ?>
<?
if ($level == "Habbo US Reporter"){
?>
<a href="javascript:loadintoIframe('main', 'home.php')">» Home </a><br><br>
<b><u>News System</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'news/us/addnews.php')"> » Add News</a><br>
<a href="javascript:loadintoIframe('main', 'news/us/editnews.php')"> » Edit News</a><br><br>
<b><u>Personal Options</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'stafflist.php')">» View Staff List </a><br>
<a href="javascript:loadintoIframe('main', 'changepass.php')">» Change Password</a><br>
<a href="javascript:loadintoIframe('main', 'changeemail.php')">» Change E-mail </a><br>
<a href="javascript:loadintoIframe('main', 'update.php')">» Update Details </a><br>
<a href="logout.php">» Logout </a><br><br>
<b><u>Messaging</u></b><br><i>Please check regularly</i><br><br>
<a href="javascript:loadintoIframe('main', 'pms/message.php')">» View Messages (<? echo"$mesnum" ?>) </a><br>
<a href="javascript:loadintoIframe('main', 'pms/sendpm.php')">» Send A Message </a><br>
<? } ?>
<?
if ($level == "Habbo AU Reporter"){
?>
<a href="javascript:loadintoIframe('main', 'home.php')">» Home </a><br><br>
<b><u>News System</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'news/au/addnews.php')"> » Add News</a><br>
<a href="javascript:loadintoIframe('main', 'news/au/editnews.php')"> » Edit News</a><br><br>
<b><u>Personal Options</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'stafflist.php')">» View Staff List </a><br>
<a href="javascript:loadintoIframe('main', 'changepass.php')">» Change Password</a><br>
<a href="javascript:loadintoIframe('main', 'changeemail.php')">» Change E-mail </a><br>
<a href="javascript:loadintoIframe('main', 'update.php')">» Update Details </a><br>
<a href="logout.php">» Logout </a><br><br>
<b><u>Messaging</u></b><br><i>Please check regularly</i><br><br>
<a href="javascript:loadintoIframe('main', 'pms/message.php')">» View Messages (<? echo"$mesnum" ?>) </a><br>
<a href="javascript:loadintoIframe('main', 'pms/sendpm.php')">» Send A Message </a><br>
<? } ?>
<?
if ($level == "Habbo CA Reporter"){
?>
<a href="javascript:loadintoIframe('main', 'home.php')">» Home </a><br><br>
<b><u>News System</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'news/ca/addnews.php')"> » Add News</a><br>
<a href="javascript:loadintoIframe('main', 'news/ca/editnews.php')"> » Edit News</a><br><br>
<b><u>Personal Options</u></b><br><br>
<a href="javascript:loadintoIframe('main', 'stafflist.php')">» View Staff List </a><br>
<a href="javascript:loadintoIframe('main', 'changepass.php')">» Change Password</a><br>
<a href="javascript:loadintoIframe('main', 'changeemail.php')">» Change E-mail </a><br>
<a href="javascript:loadintoIframe('main', 'update.php')">» Update Details </a><br>
<a href="logout.php">» Logout </a><br><br>
<b><u>Messaging</u></b><br><i>Please check regularly</i><br><br>
<a href="javascript:loadintoIframe('main', 'pms/message.php')">» View Messages (<? echo"$mesnum" ?>) </a><br>
<a href="javascript:loadintoIframe('main', 'pms/sendpm.php')">» Send A Message </a><br>
<? } } ?>
<br><center><a href="main.php">[Refresh]</a>
</div>
</td></tr></table>
</div>
<div id="navbot">
</div>
</td>
<td width="6" valign="top">
</td>
<td width="417" valign="top">
<table width="95%">
<tr><td valign="top">
<br>
<div id="conttop">
</div>
<div id="contmid">
<center>
<iframe id="main" src="home.php" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" bordercolor="black" vspace="0" hspace="0" style="overflow:visible; width:95%; display:none"></iframe>
<br><br>
</div>
<div id="contbot">
</td></tr></table>
</td>
<td width="7" valign="top">
</td>
<td width="150" valign="top">
<div id="statstop"></div>
<div id="statsmid">
<table width="90%">
<tr><td align="center">
<font color="#FFFFFF">
<br><br>
<iframe id="stats" src="stats/radio_stats.php" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" bordercolor="black" vspace="0" hspace="0" style="overflow:visible; width:95%; display:none"></iframe>
</td></tr></table>
</div>
<div id="statsbot">
</div>
</td>
<td width="19" valign="top">
</td>
</tr>
</table>
<br><br>
</div>
<div id="bottom">
</div>
</div>
</body>
</html>
http://www.tehupload.com/uploads/407736ea8eda32cfiles.png
-terrior-
30-07-2008, 09:07 AM
OMG no1 can do anything anymore without being accused of ripping it!
All i am trying to do is LEARN PHP & MySQL
THIS IS NOT A RIP!!!!!!!!!!!!!
IF YOU THINK IT IS FINE BUT KEEP IT TO YOURSELF
ANYWAY all it is is Forms which ADDs/EDITS/DELETEs/ Stuff from Database so there is no need to RIP its too simple :S
Most of the code came from searching GOOGLE on how to do stuff!!
(not from other panels)
OH YEH AND THANX FOR THE CONSTRUCTIVE FEEDBACK!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
and RyanDot i do have a layout but its rubbish which is why i need a new 1!!!!!
Calon
30-07-2008, 11:24 AM
OMG no1 can do anything anymore without being accused of ripping it!
All i am trying to do is LEARN PHP & MySQL
THIS IS NOT A RIP!!!!!!!!!!!!!
IF YOU THINK IT IS FINE BUT KEEP IT TO YOURSELF
ANYWAY all it is is Forms which ADDs/EDITS/DELETEs/ Stuff from Database so there is no need to RIP its too simple :S
Most of the code came from searching GOOGLE on how to do stuff!!
(not from other panels)
OH YEH AND THANX FOR THE CONSTRUCTIVE FEEDBACK!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
and RyanDot i do have a layout but its rubbish which is why i need a new 1!!!!!
I've gone thorough YOUR CODE, so stop lieing.. It's housekeeping, -REP for ripping and lieing.
Agnostic Bear
30-07-2008, 12:10 PM
And so few people don't realise who actually coded it first :rolleyes:
Dentafrice
30-07-2008, 12:14 PM
Here you go again, both me and Anzrew spoke about that in a thread (last year? I believe) and we noted the major differences in the panel, and why they were like that.
The HabboFM one which Nigel went crazy with, is an entirely seperate one, and was very different. It had more features, and was amazing.
I agree I did base the design on HabboFM's, as I worked there at the time when Nigel and Anzrew were both there.
I had never seen the coding, and everyone knows that a DJ doesn't see that. So quit trying to start an argument ;)
Agnostic Bear
30-07-2008, 12:21 PM
Here you go again, both me and Anzrew spoke about that in a thread (last year? I believe) and we noted the major differences in the panel, and why they were like that.
The HabboFM one which Nigel went crazy with, is an entirely seperate one, and was very different. It had more features, and was amazing.
I agree I did base the design on HabboFM's, as I worked there at the time when Nigel and Anzrew were both there.
I had never seen the coding, and everyone knows that a DJ doesn't see that. So quit trying to start an argument ;)
I wasn't trying to start an argument, you just seem to go over the top with everything, also the coding is poor in both of them so I don't see why anyone would want to use that as a base.
Excellent
30-07-2008, 12:26 PM
I wasn't trying to start an argument, you just seem to go over the top with everything, also the coding is poor in both of them so I don't see why anyone would want to use that as a base.Who cares, it's a dj panel for habbo fansites.
Dentafrice
30-07-2008, 12:27 PM
I'm not sure how I went over the top, I had not even replied to this thread LOL until you started ********, so don't give me that ****.
Look at the coding in your KP Alpha, that's pretty poor coding too.. which you blame on being '6+ months old'.
IDontKnow
30-07-2008, 12:39 PM
Calm down ladies. I'm confused.com
Source
30-07-2008, 12:43 PM
Me too, I need confused.com
Dentafrice
30-07-2008, 12:51 PM
I need beer.com
Agnostic Bear
30-07-2008, 01:24 PM
I'm not sure how I went over the top, I had not even replied to this thread LOL until you started ********, so don't give me that ****.
Look at the coding in your KP Alpha, that's pretty poor coding too.. which you blame on being '6+ months old'.
It's still better than what you put out, and it is 6 months old.
lolwut
30-07-2008, 01:57 PM
i knew it reminded me of something.
why did you even bother?
Calon
30-07-2008, 02:30 PM
Me too, I need confused.com
Could I have some pizza, with that?
Calm down ladies. I'm confused.com
CONFUSED.COM IS UNAVAILABLE RIGHT NOW
Please check back soon as our web development team are editing the website.
tbh, -terrior- ripped the code...
Who cares about how crap Dan's panel is.. It's better than whatever I can code, but that's not the point..
File something against -terrior- ;)
Don't give us the "hes helping out.. so its ok" caleb, because look at his code addons, even I code better than that. :D
-terrior-
30-07-2008, 09:46 PM
OMG WHAT IS YOUR PROBLEM
Yes some parts of the code may be copied because i didnt know how to do stuff.. but not much and i dont think it was even from housekeeping :S
All im trying to do is LEARN HOW TO CODE so stop having a go at me
im not trying to make money out of this panel
i simply put it out there for people to use if they wanted to or to help me improve my coding skills!!!!
Calon
31-07-2008, 12:25 AM
OMG WHAT IS YOUR PROBLEM
Yes some parts of the code may be copied because i didnt know how to do stuff.. but not much and i dont think it was even from housekeeping :S
All im trying to do is LEARN HOW TO CODE so stop having a go at me
im not trying to make money out of this panel
i simply put it out there for people to use if they wanted to or to help me improve my coding skills!!!!
Stop lieing, you copied the whole thing, take a look at the copyright.
Excellent
31-07-2008, 12:29 AM
Stop lieing, you copied the whole thing, take a look at the copyright.He's probably used print instead of echo to try make it look 'different'. Btw, inventhosting - not funny :(
Turbocom
31-07-2008, 12:40 AM
I'm gonna -rep for ripping thanks!
Calon
31-07-2008, 02:03 AM
He's probably used print instead of echo to try make it look 'different'. Btw, inventhosting - not funny :(
haha! :D
I know, it's not funny.. the servers are cheap. check it out now!
Also;
I don't think he's edited any code at all.
wsg14
31-07-2008, 02:24 AM
haha! :D
I know, it's not funny.. the servers are cheap. check it out now!
Also;
I don't think he's edited any code at all.
C'mon guys leave him alone! He's just learning...
[/sarcasm]
You don't learn **** by copying codes. You take a look at it, write the script yourself and if you have problems post the code here for opinions, help etc.
Source
31-07-2008, 02:27 AM
Threads like this should be left do die. Otherwise we are giving him the exposure he wanted... if that makes any sense at all. Which I'm not overly sure it does... sorry.
Calon
31-07-2008, 02:28 AM
C'mon guys leave him alone! He's just learning...
[/sarcasm]
You don't learn **** by copying codes. You take a look at it, write the script yourself and if you have problems post the code here for opinions, help etc.
+REP!
That's my opinion on it too, or taking bits from other scripts BUT not claming them as your own, and not releasing them either.
Edit: Given too much rep in 24 hours, will REP tomorrow.
wsg14
31-07-2008, 02:31 AM
+REP!
That's my opinion on it too, or taking bits from other scripts BUT not claming them as your own, and not releasing them either.
Bingo.
Threads like this should be left do die. Otherwise we are giving him the exposure he wanted... if that makes any sense at all. Which I'm not overly sure it does... sorry.
Well, if he's after 'exposure' (which in this case will be called flaming) he's come to the right place. He's claiming that he is learning PHP, which we can believe but if he's copying codes he's going to get nowhere. If that's what he wants, then fine as if he had not of ripped I'm sure lots of people would be happy to him.
Calon
31-07-2008, 02:35 AM
@source;
He's only going to get flamed, he wanted constructive feedback, which he's getting the opposite of, and a ton of -REPs hopefully.
Want to hide these adverts? Register an account for free!
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.