Jump to content
MakeWebGames

Djkanna

Members
  • Posts

    3,138
  • Joined

  • Last visited

  • Days Won

    36

Everything posted by Djkanna

  1. Don't worry about it, as long as both domains point to the same game you will be fine. You could always send in a support ticket for confirmation, however I don't think there is anything wrong with what you've done.
  2. Yeah Blade, the second $_GET isn't needed and perhaps 0 would be better than false. $_GET['ID'] = ( isset ($_GET['ID']) ) ? intval ($_GET['ID']) : 0;
  3. Well done, for your first 'full' try BladeWolf2010.
  4. <?php //Some connection/class info etc if ( $ins = $db->prepare ('INSERT INTO `table` (`string`, `string`, `int`) VALUES (?,?,?)') ) { $ins->bind_param('ssi', $strA, $strB, $int); $ins->execute(); //Do more if needed $ins->close(); } else { //An error has occurred. //$db->error; }
  5. They attempted to patch it, well that was until someone or a group broke it again. :whistling:
  6. Djkanna

    php encoders.

    None.
  7. Are you sure?
  8. Good point, but still surely that's a high enough amount for a 'stable' TBG's economy unless it's one of those 'money making/coporate' type games.
  9. INT has a limit of 4294967295, honestly why would you need any more for a text based game? I just don't understand.
  10. Well it looks very good, and somewhat scares me at the same time. Well done, Truffle. DJK.
  11. I did have an account but more than likely my account no longer exists, I think they require you to log in at least once. Anyhow if I have one still its; Djkanna
  12. I propose a KISS karaoke, lets start with 'Rock & Roll All Nite' or perhaps 'I Was Made For Lovin' You'.. :P
  13. Wait I don't remember seeing that, then again quick glance indicates there isn't anything really(*maybe query touch ups but I ain't complaining*) within that code that needs it, so that may be why, who knows. So I still say to you, good job! :P *Shivers at the sight of image maps*
  14. Forgive me, but open up an image editor and re-size the image?
  15. Line 39: $ore = Trout; should be $ore = 'Trout'; I'm impressed Lilith, well done. :thumbsup:
  16. Wait I remember this. :P Best of luck with sales Sim.
  17. EzRPG, probably is a good choice for this project, due to the way it's set-up/laid-out, however do some exploring have a play with different engines and see which one fits your needs best. Good luck.
  18. Djkanna

    Spudinski

    Haha love it Ruler!
  19. Djkanna

    Spudinski

    I don't feel important even though I've had this title given to me three times now, they love me. Anyway this isn't about me it's about you, you f00.
  20. Djkanna

    Spudinski

    I'm a what? Social Butterfly? And yes Paul I'm a super mod, this means I'm a mod that can fly. Edit: Oh I see, I'm popular, yet I don't belong to a single group, Urban Dictionary FTW!
  21. Something like $getItems = $db->query('SELECT COUNT(`itemID`) FROM `itemMarket`'); if($db->num_rows($getItems)) { $itemCount = $db->fetch_single($getItems); } else { $itemCount = 0; } echo 'Current items for sale in the item market ('.number_format($itemCount).')'; You'll have to change the query information to match with your current item market. One thing, I really did misread your title, I thought your item market needed more pizzas!
  22. *Claps* He's a genius! :whistling:
  23. while ($EV = mysql_fetch_row($QUERYGET)) { echo "<tr><td>".date('F j Y, g:i:s a',$EV->evTIME); if(!$EV->evREAD) { echo ' [b]New![/b]'; } echo "</td><td>".$EV->evTEXT."</td><td><a href = 'events.php?delete=".$EV['evID']."'>Delete</a></td></tr>"; } Notice anything wrong? I think someone needs to look up arrays and objects :O
  24. Not all of them are insecure though, although I've never actually counted.
  25. Well they never were praised on their 'readable' code. :P
×
×
  • Create New...