Jump to content
MakeWebGames

POG1

Members
  • Posts

    1,419
  • Joined

  • Last visited

Everything posted by POG1

  1. Re: Declared As A Business? (UK) If it says o n your site something like "donate to keep this game running" then i don't see why it would be classed as a business :S
  2. Re: Tab menu problem Ok cool :)
  3. POG1

    IM GOD lols

    Re: IM GOD lols it gets post data magically. Then it will create a folder and put an image in, then save to the DB Why is this in pro php as wel :S
  4. Re: A simple, fast database class for PHP 4+ and MySQL what about the arrays?
  5. Re: Apache is hard! I typed it in from scratch and it worked, but didn't get any style :(   There must be a better way!
  6. Re: [McCodes][v2] Event Layout Mod Its nice though man, see if you can make some more things like this. Get people to spice up their boring games up! :)
  7. Re: Apache is hard! I have worked out a way to for it to work. RewriteRule ([a-zA-Z0-9]+)/([a-zA-Z0-9/]+) $1.php?page=$2 [L] However, there is one problem. My images and CSS wont show now :(
  8. Re: A simple, fast database class for PHP 4+ and MySQL 1. You can change it for the whole site by changing the class its self 2. Debugging is easier to keep consistent 3. Security loads more..
  9. Re: google and your game   you don't need JS to login :S
  10. Re: A simple, fast database class for PHP 4+ and MySQL a class is the better option..
  11. Re: [McCodes][v2] Event Layout Mod   Javascript, ... big difference :P Yes! This man probably has a dream weaver package, it will have DHTML things ready (called spry) made, all you have to do is click :)
  12. POG1

    php Card Duel

    Re: php Card Duel Why do you have a installer file? If you made it you wouldn't need an installer :S
  13. Re: My Engine in the works. who done that :D
  14. Re: 2 images I created both of them images are siick man. You got skills!
  15. Re: Wanted-criminals.net   Looks like you put a lot of hard work in. :roll:   Lmao stolen its not hard to think of points Not just your privacy policy but the law also. Check for the data protection act
  16. Re: [McCodes]No right click script i dunno lol it was a joke. Its up to you what sites you like, but whatever floats your boat haha
  17. Re: Apache is hard! Would this apache work correctly? RewriteRule ^/([a-z0-9/]+)?$ index.php?page=$1 [L]
  18. Re: Apache is hard! Thanks for that, i didn't think of that method :D Also, what is a phtml file lol
  19. Re: [MC Code V2] Custom Error Pages   Have you ever seen broken links where it says "404 page not found" or something? This will allow you to add custom error pages instead of that Also, there isn't much sense in redirecting an image. You can however block images being used not on your website, check this out.. RewriteEngine on RewriteCond %{HTTP_REFERER}!^$ RewriteCond %{HTTP_REFERER}!^http://(www\.)?YOURDOMAIN.com/.*$ [NC] RewriteRule .*\.(jpg?jpeg?gif?png?bmp)$ - [F]
  20. POG1

    BOE Engine

    Re: BOE Engine BOE is a sick game. Why sell? I think the layout needs to be cooler as well, something more army like
  21. Re: google and your game Yeah i thought about that but it will then not add the pages not in the game. You could have a link into the game as well though maybe :)
  22. Re: [MCCODES V2] User Holidays script my example will put no extra code into the cron, it will also be more acurate. If someone is to go on holiday just before the cron is set off they will loose a day, Other users will be able to see a more exact figure (2 days, 8 hours and 4 mins) as apposed to (3 days). :)
  23. Re: [MCCODES V2] User Holidays script Your thinking about it wrong. Use a timestamp! Have a form that you choose how many days to be on holiday, you will then work out what time they are back.   $days = time() + (60*60*24*$_POST['days']); mysql_query("UPDATE users SET holiday = '".$days."' WHERE userid ='".$userid."';");   Then to test if they are online, in globals.php or summin   if($ir['holiday'] - time() > 0) { // on holiday still }
  24. Re: how to always show scrollbars? I dunno what you mean lol
  25. Re: My Engine in the works. whats starcraft
×
×
  • Create New...