
Decepti0n
Members-
Posts
731 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Decepti0n
-
Update MySQL Table Using An Array
Decepti0n replied to stryker's topic in MySQL, Oracle, Postgress or other DB
Re: Update MySQL Table Using An Array Could always credit the source... -
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
-
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)
-
Re: [mccode] Annoucement Mod Thinkinggggg you're a little lost on what ajax is :|
-
Re: Error your host doesn't allow the use of eval()
-
Re: Idea about donator cyber bank make it two equals signs
-
Re: Online Cricket Management Game http://au3.php.net/manual/en/language.o ... ogical.php
-
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
-
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
-
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
-
Re: [mccode] [TGM] Crystal Market Logs [TGM] It's a rar archive, you have to extract it (same as zip files)
-
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
-
Re: Mccode V2 Markets. $stat = 'we can use php tags? :o';
-
Re: Drug Place put a comma after the 7
-
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
-
Re: Attack Daysold Limit Hopefully you didn't take it literally..
-
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
-
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
-
Re: Game owners sending out referal link. How can you not highlight the url bar :|
-
Re: Optimising Brave Update http://au2.php.net/manual/en/function.m ... .php#76991
-
Re: iBusinessPromoter scam
-
Re: FaceBook vs. MySpace Social networks suck and since Facebook opened to everyone, it's going to go downhill just as myspace did
-
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
-
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