Jump to content
MakeWebGames

Decepti0n

Members
  • Posts

    731
  • Joined

  • Last visited

    Never

Everything posted by Decepti0n

  1. Re: harry potter Yeah, the guy left the EXIF data on the photos too, so it has his camera's serial number (which is registered) People are also re-typing the entire book word for word :\ Its not like it'll do anything, it'll still sell like an avalanche
  2. Re: [Free] Password reset code if it's 32 characters long and a-f and 0-9, then it probably is
  3. Re: Just a small, puny, itty-bitty, cute, tiny little problem if (md5($_POST['oldpw'] . "code")) != $ir['userpass'] ?
  4. Re: Mysql Injections you dont get them decrypted it just looks in a huge database of already known hashes to find the one that matches
  5. Re: [FREE]Music system This has to be one of the WORST ideas i've seen... If you honestly knew anything about running a site, you'd know music on a web page is one of the most retarded things to add, especially music that 1. Starts automatically 2. Starts EVERY page load no matter if you click stop 3. Plays music that most people probably wont like Don't say they can just turn it off, im sure they'll be long gone from your site when you add it
  6. Re: [mccode] gang staff panel v4
  7. Re: End page error Haha, obviously you dont know error's here:   case 'editcitysub': edit_city_sub(); break; function new_city() {   Put a } after break; (unless you already fixed it) although, that last function did need to be closed
  8. Re: [Free] Password reset code I was gonna say lol From what I remember the @ should be in front of the function, so $send = @mail ... Otherwise it looks good and secure :P
  9. Decepti0n

    Functions

    Re: Functions I only use functions for things that need doing more than once... like error checking or something Otherwise there's no point in using it, i just use if's as well, and you also dont need to declare variables as globals I doubt it'll give much performance boost either way though
  10. Re: Why is one of my domains estimated so high? dnscoop is extremely inaccurate, same with any other similar site it doesn't base it on current revenue, potential or anything, just strictly links and some other crap to put it simply, don't rely on it for accurate valuations, there's plenty of forums with people more experienced in it that can give a better opinion
  11. Re: Best Website Evar!!11 http://www.hornymanatee.com/
  12. Re: Left and right hand menu? Since when? mines three columns and all in percentages
  13. Re: Discovery live messenger I had it for a bit, used imitate maybe once then got sick of it Or more than likely grew out of it, MSN's full of kids now.. who have all these addons that don't do anything. Plus at 15mb to download (i think), and sucks all the resources from my computer, its kinda pointless I stripped out and turned off as much features as i could to just use it for talking to people for work, but much prefer Gtalk since it's small and allows me to talk (which is surprisngly what i want from an IM)
  14. Re: Discovery live messenger It's a piece of shit
  15. Re: Qucik question if ($r['user_level'] == 2) :P
  16. Re: Current V2 Problems (Minor Bugs) Help Required? Dunno, from what I know using !$var is the equivalent of if (!isset($var) && empty($var)), and i dont even see the point in that.. I just use strlen
  17. Re: If you do one thing today... Yeah its called having a good password
  18. Re: Awesome 1st step to email validation. I just use a disposable email address, and since when is hotmail the only email provider
  19. Re: How Can I Judge The Legal From The Illigal Codes? Shouldn't you really keep backups
  20. Re: Problem With My Mod :S Somone Please Help Nope, that'll be fine
  21. Re: Problem loading brushes. .tpl is usually a html template file :D edit: that ^ is supposed to be a big smile, looks like im laughing lol
  22. Re: Urgent Trouble Support should be the main reason you choose a host! lol space/bw, nah, the value of support is sometimes ten times what you paid for the month
  23. Re: Problem With My Mod :S Somone Please Help Yeah, that'll loop forever It resets to one on each loop,so it'll always be less than 50 Use firefox, it'll automatically end the page if it detects that it's looping forever (i think)
  24. Re: Problem With My Mod :S Somone Please Help doesn't matter how many lines it is, if you use   for ($i = 0; $i < 1000000000; $i++) { echo $i; }   It's gonna be slow, if you wanna disable the time limit, put set_time_limit(0); at the top of the script to make it run until its done
  25. Re: Problem With My Mod :S Somone Please Help How much are you looping through? The error's kinda straightforward :p
×
×
  • Create New...