Jump to content
MakeWebGames

Djkanna

Members
  • Posts

    3,137
  • Joined

  • Last visited

  • Days Won

    35

Everything posted by Djkanna

  1. Hmm maybe not I'll get back to you :)
  2. Just <img> I would think <?php $whitelist = array ( ' ', '<img>', '[i]', ' ', );
  3. <?php // Add to your whitelist $whitelist = array ( ); // Then use your whitelist within Strip_tags() ;) $message = strip_tags($message, $whitelist); ?>
  4. Djkanna

    Modules Guide

    "How would you do mysql_fetch_assoc() in $db?" I think it's $this->db->fetch() As for hook in tpl file I would assume you'd use {$var}
  5. Well at least he hasn't used a format function for an html element such as <td> :P
  6. Paranormal Entitiy was funny :P Also directed and starred Shane Van Dyke (I like him it's Dick Van Dyke's grandson lol) but it was far from Chitty Chitty Bang Bang XD
  7. The only problem is that The Blair Witch Project wasn't a good film neither was this Texas Chainsaw Masacre was though :P especially the original documentry :D
  8. I wonder if this would be any use http://www.ietf.org/rfc/rfc2396.txt Specifically section B (edit) Quick Research: (?:([^:/?#]+):)?(?://([^/?#]*))?([^?#]*\.(?:jpg|gif|png))(?:\?([^#]*))?(?:#(.*))? ^https?://(?:[a-z\-]+\.)+[a-z]{2,6}(?:/[^/#?]+)+\.(?:jpg|gif|png)$ Source*
  9. I don't like classes too much the only time I use a class is if I use a PHP Framework.
  10. CrazyT/LazyT created an awesome jQuery based chat contact him :)
  11. Looks awesome Illusions :) Well done buddy
  12. Little late (I think) but Happy St. Patricks Day! :)
  13. What's the problem?
  14. Full game security can cost as much as the script itself and maybe more, Requested Mods: Well that vary's on the mod usually mods are between $5 and $150 Design: Depends if it's custom, if you purchase a license or buy it out. Usually $500+, licenses cost $60+ depending on who you go to I suppose.
  15. Not quite Danny, For example your level one and to level up you need 12 exp and for some strange reason it gives you 177 it will produce display bug within header where your bar fly's off the screen and pretty much screws up the layout which I think the OP means, if I'm wrong then whoops :P
  16. It will work with V2 :)
  17. <?php include_once(DIRNAME(__FILE__) .'/globals.php'); if($ir['user_level'] < 2) { echo'<span style="font-weight: bold;">What are you doing here. <a href="/">> Go Home<a/>'; } $_GET['action'] = isset($_GET['action']) && ctype_alnum($_GET['action']) ? $_GET['action'] : FALSE; if($_GET['action'] == 'doit') { $db->query("UPDATE users SET user_level=1 WHERE userid=".abs(intval($userid)).""); echo'You have now resigned as staff.'; $h->endpage(); exit(); } echo'Are you sure you would like to resign from being a staff member? <table width="60%" class="table"> <form action="" method="get"> <tr><td><input type="submit" name="doit" value="Yes." /></td></tr> <tr><td><input type="submit" value="No!" onmouseclick="document.location.href=\''index.php'" /></td></tr> </form> </table>'; $h->endpage(); ?>
  18. Man that was hard to follow LazyT.. I've just realised the my post didn't come how I wanted it nor does it make sense -.-
  19. Not quite pointless if the OP can work it out LazyT's post can be the basic idea for something only to let the OP in... XD
  20. I found this to be amusing, "Mobcartels does not in any way support or condone the use or sale of licit or illicit drugs. If you think you have a problem with drugs, or need to talk to someone visit - Frank" It looks good.
  21. It's debatable..
  22. That is indeed sad and I'd hate to imagine what you went through, I'm glad to hear that Ysabella is doing better now. The trip to Peru sounds like an epicially tiresome journey :P and it was nice to meet you in the chat Kestrel :) I wish you and your family all the best.
  23. Try checking if "$r['mail_id']" that's right..
  24. I learned 'Curly Braces' from PHP and if() else() from PHP I learned CSS before I learn't proper HTML (stupid?!?) I learn't what I know of PHP before I learn't HTML :S
  25. I'd be quite interested in this myself I'll have to have a browse. One thing please change the font to a 'more' readable format.
×
×
  • Create New...