Jump to content
MakeWebGames

Dominion

Members
  • Posts

    2,447
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by Dominion

  1. dreamweaver does not suck :S
  2. i have not had a good like but take line 301 out my guess is that php open tag is just not needed
  3. are the images are copyright to the game "mafia" ?
  4. for around £30 i think http://makewebgames.io/user/15743/spydre452/ does some nice payouts would be unique but i do not think you will get a mascot (hope i got the right profile :rolleyes: )   btw danny don't go there 1/2 the site is americans
  5. danny £55 is around $85 the £ is nothing like it was before :(   sos are way to much i love there work my i would never go to them $400 is mad never mind $600
  6. $100 + sounds about right if you want a well made one any lower and you must be paying someone who likes you a lot
  7. bad wording on my part still check if the function is in the file
  8. you want unique but your looking at games to copy ?
  9. the function viewuser_info() is not being called (could have forgot to add it in the file ? ) make sure its there
  10. says it all right here   if (file_exists('globals.php')) {include 'globals.php';   if the files 'globals.php' exists its included as it should be in v2
  11. how is $db->query more secure then mysql_query ? all $db->query does is   mysql_query($query,$c) or die(mysql_error());   via the class folder, it is faster to use mysql_query() since you are not calling a whole new file however in v2 its nothing since the database class is always called anyway
  12. Dominion

    News about PHP 6

    thought it was just put on hold ? edit - i used google to look it up and found   next post also says     well it could be wrong its more along the lines of what i have seen around
  13. for loading time a lot can be done things like query's can ve updated using least can cut down on how many times you need to run querys things such as echo over print and using mysql_query over $db->query (if your using v2) adds a micro of a sec however not noticed on the user end in my opinion anyway.   just keep pages small and everything optimized and you will be fine you can also use javascript so pages do not need to reload everytime someone clicks a submit (e.g usernotpad) works wounders on the feel of a website to the user
  14. he said he can not stop it on the login page not that it can not be stopped ...
  15. look down the post here and use the one by maketextgames. it is good to see people try however mysql_real_escape_string() is for strings (text input) it escapes the text to stop an sql injection for numbers it does nothing as said above
  16. yes i know it would not effect money unless it was on the money part O-o in banks for example when putting money in it is passed via the $_POST['deposit'] it is using something like   $_POST['deposit']=abs((int) $_POST['deposit']);   so no more then the int value can go in even if the database would save it (could be wrong)   you do not add that it was an example
  17. <?php $var1 = abs((float)99999999999999) ; echo "$var1"; ?>   would allow more then 2,147,483,647 ... however mccodes use (int) not (float)
  18. look in your phpmyadmin under the users table if more money then 2,147,483,647 is in there then its showing it due to mcc using (int) on more or less every number so you can not enter more the 2,147,483,647 to -2,147,483,647 (its limit) you need to change all (int) to (float) (i think its float may be wrong O-o)
  19. did you just learn that or something like the 3rd time you have said it today its only faster because it smaller they do the same thing the user will not notice a 0.0000000001 of a sec so it does not matter that much :|
  20. no its not what you use to secure a whole site in fact its not even near the level you would need as i said 5+ functions could help but one function will not the one you posted is for strings and numbers (mres and abs used) so i want to use html on your site whats stopping me ?
  21. to secure a file is fine crimgame is very good at that .htaccess you can do stuff like hide the .php and what is in say the "img" folder if your files are not secure it does not magicly make them so i think hes just trying to use it to make his site look that little bit better eg just crimgame.com rather then crimgame.com/register.php etc (may be wrong as i have not looked into it but i think thats what that does)
  22. Tutorial: v1 - v2 Conversion
  23. he means one function that does mres and abs(intval etc if its a number like i said won't really work in one (or not the best idea anyway) but 5 or 6 that help secure input and output could work must people are still using magictallguys clean and format functions
  24. that will not protect you from xss attacks one master function will not always work however using say 5 to secure your site may if done right
  25. gangs wars last untill A - someone surrenders and that is accepted B - one gang goes to 0 respect
×
×
  • Create New...