Jump to content
MakeWebGames

Klikoka

Members
  • Posts

    382
  • Joined

  • Last visited

    Never

Everything posted by Klikoka

  1. Re: Count Backwards :D 4908.
  2. Klikoka

    Double

    Re: Double 17025216.       2^24 is 16777216
  3. Re: Counting (nr game) 1935
  4. Re: Count Backwards :D 4910
  5. Klikoka

    How to....

    Re: How to.... Ahh, Ok.
  6. Klikoka

    How to....

    Re: How to.... With your one Pog where would it be selecting the ID from to select the username?
  7. Klikoka

    How to....

    Re: How to.... This is what i am using at the moment.   $sql = "SELECT * FROM TABLENAMEHERE"; $query = mysql_query($sql) or die(mysql_error()); $row = mysql_fetch_object($query); $name = htmlspecialchars($row->username);
  8. Re: Different User Profile & View User Page   Nice spot Pog never saw that one ;)
  9. Re: Guess the next poster No YoungGold.
  10. Klikoka

    Double

    Re: Double 2128152       2^21 is 2097152
  11. Re: Counting (nr game) 1928
  12. Re: Count Backwards :D 4916
  13. Re: FIRST THOUGH! People.
  14. Re: 3 Word Game That A Squid
  15. Re: Counting (nr game) 1917
  16. Re: I want to make/own my own game, please help Like Floyd said if you just want a game for you and your friends to play just upload a script and go. But if you want a unique game that may or may not make you a lot of money be prepared to spent lots of time,energy,money and effort to make it and trust me it is frustating.
  17. Re: [REVIEW]Criminal Warfare I would suggest a goldish color.
  18. Re: ispy ( not a rip-off of apple ) Tools
  19. Re: Email Activation   Yes it has been done but this is not the same code.
  20. This is what Spudinski posted in the irc to help someone yesterday so i thought i would post it here to help everyone else.   Find/Create a file called .htaccess and add this into it : ErrorDocument 403 /error.php ErrorDocument 404 /error.php ErrorDocument 405 /error.php ErrorDocument 408 /error.php ErrorDocument 500 /error.php ErrorDocument 502 /error.php ErrorDocument 504 /error.php   Then make a file called error.php and add this : <?php $status = $_SERVER['REDIRECT_STATUS']; $codes = array( 403 => array('403 Forbidden', 'The server has refused to fulfill your request please contact webmaster.'), 404 => array('404 Not Found', 'The document/file requested was not found on teh server if possible report to the website owner.'), 405 => array('405 Method Not Allowed', 'The method specified in the Request-Line is not allowed for the specified resource.'), 408 => array('408 Request Timeout', 'Your browser failed to sent a request in the time allowed by the server.'), 500 => array('500 Internal Server Error', 'The request was unsuccessful due to an unexpected condition encountered by the server.'), 502 => array('502 Bad Gateway', 'The server received an invalid response from the upstream server while trying to fulfill the request.'), 504 => array('504 Gateway Timeout', 'The upstream server failed to send a request in the time allowed by the server.') ); $title = $codes[$status][0]; $message = $codes[$status][1]; if ($title == false || strlen($status) != 3) { $message = 'Please supply a valid status code.'; } echo ' <h1>' . $title . '</h1></p>' . ' ' . $message . '</p>'; ?>   And your done.
  21. Re: war surrender If not check if you have got the table and/or the warID table in.
  22. Re: [showcase] CriminalImpulse.com Nice Cronus.
  23. Re: Register.php create user on SMF Forum I believe you can just change how the password is hashed when you execute it.
  24. Re: Tutorial: v2 - v1 Conversion   Have you added the Structure table?
  25. Re: Attractive Advertisement Tutorial! I used this tutorial for this ad:
×
×
  • Create New...