Recent content by Kodys

  1. Kodys

    All my management tabs are showing the same color (orange)?

    Change the $getRanks to $getRanks = DB::Query("SELECT id,name,badgeid,tab_colour FROM ranks WHERE id in (9,8,7,6,5,4,3,2) ORDER BY id DESC");
  2. Kodys

    Snog CMS?!

    It doesn't take a genius to create folders then save the JavaScript files with Ctrl S too. I'm sure all your threads/"releases" has been proven that they're off the internet somewhere else
  3. Kodys

    Snog CMS?!

    Do you mean scam or will give him a bunch of html files taken with CTRL S? Although @Wubblr I don't really see why'd you want their CMS considering there's about two I believe, do something unique.
  4. Kodys

    PHP News Help

    In your news replace the php section with this. <?php if(!isset($_GET['id']) || !is_numeric($_GET['id'])) { $_GET['id']...
  5. Kodys

    PHP News Help

    Yeah, I've made sure it would say the username of the ID by using $author = mysql_query("SELECT author FROM cms_news WHERE id = ".$_GET['id']); $a = mysql_query("SELECT * FROM users WHERE id =...
  6. Kodys

    PHP News Help

    Apologises for late reply I fell asleep, make sure it's not an username in the cms_news table under author, change it to your id and use the addnews.php so it'll always place in their ID.
  7. Kodys

    PHP News Help

    Replace news.php with this, I accidently left out a ).
  8. Kodys

    PHP News Help

    If you're going to be using the Author ID rather than username use both of these: addnews.php, news.php. One thing to note is while using the news.php you will have to create new articles so it uses the id.
  9. Kodys

    PHP News Help

    As you can see in your code $author['username'] isn't used anywhere in there so it's not going to return anything at all. Now this is assuming that your news article urls are something like hotel.url/index.php?url=news&id=# and the # being the article id number. Read along the comments I've put...
  10. Kodys

    PHP News Help

    I figured that option wouldn't work entirely but first the whole $onineRow doesn't do anything at all and I have no idea at all in why it's there how I think the below might work. <?php $news= mysql_query("SELECT look FROM users WHERE username = {newsAuthor}'"); while($n=...
  11. Kodys

    PHP News Help

    There's two solutions, the first one is if you're using $_GET['id'] in the news.php file and the second is if you're not. (Most likely use the second method) Just something to point out is that when you're creating a link to their home page you're using {username} when you should be using...
  12. Kodys

    Recruiting Long term Habbo retro Developer (monthly pay)

    Just saying again the first sentence in the response to me made very little sense, however if you think he can't do shit why not just wait for the CMS he's said he's planning to release in 2017? lol
  13. Kodys

    Recruiting Long term Habbo retro Developer (monthly pay)

    I'm sorry but I'm laughing so much at "any decent coder know that" mainly because of how grammatically incorrect it is and the fact you're saying if you know how to code you wouldn't use Skype, Discord and Skype are both equally good. Js don't insult XNathanCarneyX for his English when yours is...
  14. Kodys

    Convert Diamonds

    Your post was the most pointless and retarded shit you've posted, yet.. you copied and pasted what he wrote and posted it back and claimed you was helping.. k Tbh just PM me if that was too confusing - confusing myself a bit.
  15. Kodys

    Query Help

    I'm sure the problem is with this query $getUserData = DB::Fetch(DB::Query("SELECT * FROM users WHERE id = '".filter(DB::Escape($id."'")))); Try replacing it with this query..? $getUserData = DB::Fetch(DB::Query("SELECT * FROM users WHERE id = ".filter(DB::Escape($id)))); Alternatively you...
Top