Jump to content
MakeWebGames

KyleMassacre

Members
  • Posts

    2,921
  • Joined

  • Last visited

  • Days Won

    48

Everything posted by KyleMassacre

  1. Are you some kind of hacker? How did you get control of my phone?
  2. You do realize that doing this in MVC would require a complete rewrite of 99.99% of modules here, basically writing it from scratch but just using some sort of template on how things would work. Or.... Did you mean to say MCC? Me personally, I have just started MVC and I will have to say it's a lot better and a lot more fun.
  3. I hope you realize that is not entirely true. Non Profit just means that $0 is left in the bank account every quarter. Let's take a non profit organization for example: Every quarter when it's tax season for a business/organization they have to show a balance of $0.00 dollars in their organization's bank account in order to keep their status of "Non Profit". So, what does that mean exactly? Well it could mean that any remaining balance before they file taxes can end up in a Chairman's bankroll. Now don't get me wrong, I'm not saying that this does happen but can happen, at least here in the states. The only thing about that is, it's a fat 1099-* form which means it was never taxed ;)
  4. Everything GD means everything to you in regards to what you are attempting to do. The GD lib allows you to manipulate images the way you need to and layer images on other images like you are asking to do GD Lib
  5. You need to look into the GD library
  6. What you can do is include some sort of globals file that checks for the users session and if it exists then let them proceed, if not then redirect them.
  7. No you only need to use global for variables that are not defined in that function. If they are outside the function globalize it, if they are in an include globalize it
  8. Sim means to add that to your functions. For example: function someFunction() { global $user_id, $con; //the rest here }
  9. It's basically the same thing. If you just require it at the top you will be fine but just add the variables that you are using into the global keyword like the $place variable inside one of the mine_level_1() function for example. By me personally, I would have created a class out of it
  10. Good question. Maybe [MENTION=50433]ColdBlooded[/MENTION] has an answer? I too "had" a redux license which after looking just now is gone.
  11. Why require files when they are already "required". If you reauire the mine globals at the top of the file that should be good enough and just declare the variables in the global keyword. But if you do choose to require it multiple times I would use require_once()
  12. I completely forgot how the game is actually played can you share the rules that you would want? It would be pretty easy to make something like: User picks a briefcase out of several briefcases User then decides if they want to trade it for another briefcase which can be good or bad User gets what he chose I'm just not sure if there is more to the game than that though
  13. In general or any website in general
  14. [MENTION=64603]Sim[/MENTION], that's what I mean. A plain text password being sent out should be the least of people's worries in reality. If someone really wanted people's passwords there are ways to get it that are much easier than hijacking your email account. Just imagine someone writing to your register file to email them every user that signs up with all their info or writing it to a remote location in a text file.
  15. Can you enlighten us on the puzzle? I am a bit confused with it, like how does it work?
  16. Well here is the way I see it, if someone finds out your password from your email account then they deserve your password because chances are they could have gotten your password from else where. Correct me me if im wrong here [MENTION=50378]Guest[/MENTION] (he is pretty good) but if you can inject arbitrary code through the headers or where ever ( like making yourself a staff member) it's easy enough to write a file in the public folder to just send you people's passwords as they open up an account using things such as fwrite() and such?
  17. Just because a password is sent in plain text doesn't mean it's not encrypted in the database, for example: $pass = $_POST['password']; $db->query("insert into users (fields,more_fields,password) values('Something','Else','".hash('sha256',$pass)."')"); mail($_POST['email'],"Your plain text password","Here it is \n\r".$pass);
  18. I think that was "Become Civil"
  19. I think I'm going to close this and if I'm out of line here with the closure anyone > moderator may open it back but I feel it's going to far here - - - Updated - - - I think I'm going to close this and if I'm out of line here with the closure anyone > moderator may open it back but I feel it's going to far here
  20. The last post on this was almost 6 months ago and the OP isn't even around anymore. Watch where you post please
  21. KyleMassacre

    Learning PHP

    Or you could start with the Source
  22. You know, I wanted to actually create a directory of people and their games that spam in other games and create an API for it so maybe I will get something going so people can come and put spammers on blast.
  23. Remove in the query where it says hospital = <someNumber>, hospreason = <someReason> from your attack files that are not attack.php (i forget the names of them ;))
  24. Well there is your error
  25. I haven't looked at the gang data var in quite some time but does it include the gangPIC column in the query?
×
×
  • Create New...