Jump to content
MakeWebGames

Decepti0n

Members
  • Posts

    731
  • Joined

  • Last visited

    Never

Everything posted by Decepti0n

  1. Re: Update MySQL Table Using An Array Could always credit the source...
  2. Re: [mccode] Annoucement Mod AJAX is technically meant to be javascript and xml but now its mostly any server-side language and javascript The reason it really isn't is because yours is just JS, without actually interacting with php, you didn't use the XMLHTTP request like it needs
  3. Re: PHP script to create email address and sub domains. http://www.phpclasses.org/browse/package/3534.html You can try that to use cpanel with php, I haven't used it because I don't have cpanel ten (which it needs) There's a way to do both without 'officially' doing it, basically, if you research wildcard subdomains, and catch-all email addresses. Unless you can spare $50/user/year, and you can use Google apps for your mail (i've wanted to do this, it's just too expensive for now)
  4. Re: [mccode] Annoucement Mod Thinkinggggg you're a little lost on what ajax is :|
  5. Re: Error your host doesn't allow the use of eval()
  6. Re: Idea about donator cyber bank make it two equals signs
  7. Re: Online Cricket Management Game http://au3.php.net/manual/en/language.o ... ogical.php
  8. Re: XHTML Valid Game? Well that was pointless... http://validator.w3.org/check?verbose=1 ... com%2Fmain Most of the other pages probably don't validate though
  9. Re: XHTML Valid Game? This page is not Valid XHTML 1.0 Transitional! Result: Failed validation, 18 Errors Beh, I'll try and do the login in strict It doesn't make a difference unfortunately, I just do it because i feel like it basically (for most things), and theres more of a chance of it looking correct in all browsers
  10. Re: Game in Different Languages. Theres no point in using multi-dimensional arrays and will, you should be able to just loop through it all, if you have descriptive enough titles in the array foreach ($lang as $key => $val) { echo $key . ': <input type="text" value="'.$val.'" />'; }   well, thats an idea, then they'll have a form to just change everything
  11. Re: [mccode] [TGM] Crystal Market Logs [TGM] It's a rar archive, you have to extract it (same as zip files)
  12. Re: Game in Different Languages. Have language files, like en.lang.php Inside, something like   $lang['help'] = 'Help'; $lang['register_info'] = 'Register with us to do whatever.';   Translate that page, and include the one that corresponds to their language. I did it on a few new projects, but it takes a LOT of time to add new text into it, especially since while making new pages, i had to do things like:   echo '<h1>'.$l->register_info.'</h1>';   then had to add that text into the file. It takes a lot longer but it usually has its obvious benefits
  13. Re: Mccode V2 Markets.   $stat = 'we can use php tags? :o';
  14. Re: Drug Place put a comma after the 7
  15. Re: What is the greatest threat to mankind? I don't think its possible to fit planes to make sure they're 100% safe, I think keeping a 100+ ton piece of metal in the air is a feat in itself
  16. Re: Attack Daysold Limit Hopefully you didn't take it literally..
  17. Re: Online Cricket Management Game I was going to do something similar, but for a different sport, then realised I wouldn't have a clue how to do the actual games... the trading/training etc would be easy enough, just figuring out the calculations and algorithms for the game would waste too much time
  18. Re: Is This Illegal I like it how his codes are more than likely mc with a few things added on, with the price jacked up Also the red is disturbing
  19. Re: Game owners sending out referal link. How can you not highlight the url bar :|
  20. Re: Optimising Brave Update http://au2.php.net/manual/en/function.m ... .php#76991
  21. Re: iBusinessPromoter scam
  22. Decepti0n

    UFO?

    Re: UFO? All right, 03laceys, there was no alien. The flash of light you saw in the sky was not a UFO. Swamp gas from a weather balloon was trapped in a thermal pocket and reflected the light from Venus.
  23. Re: FaceBook vs. MySpace Social networks suck and since Facebook opened to everyone, it's going to go downhill just as myspace did
  24. Re: File size of Remote image? Could try a quick $a = file_get_contents('image link'); fopen('temp','w'); fwrite() filesize('temp') unlink('temp') With a bit better programming
  25. Re: Is There Anyway I Could........ Instead of a brave amount required, use a time amount required or some shit, its hard to explain but i did it on my game instead of using any sort of bar
×
×
  • Create New...