Jump to content
MakeWebGames

Haunted Dawg

Members
  • Posts

    2,933
  • Joined

  • Last visited

    Never
  • Days Won

    1

Everything posted by Haunted Dawg

  1. Re: Allows you to email all your game users Already withdrawed $1350 to bank in united states and gave $200 to spooky aka debbie for helping me with getting my money out of paypal. Im kind if some one is kind to me :-D
  2. Well i have modified this script a bit so here it is:   <?php //if they do not put a get file error out if(!$_GET['file']) { echo 'Enter a file.'; exit; } //For security we add a code if($_GET['code'] != "BAH!") { echo 'Provide code.'; exit; } //Located file: $local_file = $_GET['file']; // filename that the user gets as default $download_file = $_GET['file']; // set the download rate limit => 20,5 kb/s $download_rate = 20.5; //now download the file if(file_exists($local_file) && is_file($local_file)) { // send headers header('Cache-control: private'); header('Content-Type: application/octet-stream'); header('Content-Length: '.filesize($local_file)); header('Content-Disposition: filename='.$download_file); // flush content flush(); // open file stream $file = fopen($local_file, "r"); while(!feof($file)) { // send the current file part to the browser echo fread($file, round($download_rate * 1024)); // flush the content to the browser flush(); // sleep zero second(s) giving a delay of 0 second(s) to download file. sleep(0); } // close file stream fclose($file); } else { //if the file does not exist tell them. die('Error: The file '.$local_file.' does not exist!'); } ?>   Now the orifinal author is here: http://www.jonasjohn.de/snippets/php/file-download.htm This will help you to stop going into your cpanel to download a file, you could also update a upload function to it so u will never need to go into your cpanel to edit a file.
  3. Re: 3 Word Game market to get...
  4. Re: NEW V2 LOGIN PAGE Best table you could get:   <table border="0" cellspacing="0" cellpadding="0" style="opacity: .9; background-color: #303030; color: white;"> <tr> <th>Good looking Table</th> </tr> <tr> <td>Hello There</td> </tr> </table>   Ok well, it may not be the best table but with the css it should be cool, and no image's are used.
  5. Re: Allows you to email all your game users Not any more, in monday & tuesday i made $350.
  6. Haunted Dawg

    IE issue

    Re: IE issue So you can download the actual php file? :-o
  7. Re: [Free] 50 / 50 Chance Mod lol @ // BAH - isomerizer.com/ Why u got bah? sh33p? :lol:
  8. Re: Allows you to email all your game users Majority of people are stealing them now.
  9. Re: mccodes umm there are many of them around.
  10. Re: Case This is very handy, can come in handy to make mccode's more efficient.
  11. Re: mccodes www.rapid-riot.com
  12. Re: Referrals Edit explore.php at the bottom and register.php :wink:
  13. Re: GoldMember/In deperate need of a coder Have added you.
  14. Re: Contemplating buying mccodes v2, how hard is it to secure the existing code?   Awww shame you took my post harsh, what i was trying to say is why waste so much to post so much when you can post, it can be secured & blah blah as he asked.
  15. Re: 50/50(V2) for money and for crystals Oh Oh now you trying to back me up? :lol:
  16. Re: Allows you to email all your game users 1.- I can be spite full and buy: Im not forcing you to buy the domain but ill speak to robbie. not you.
  17. Re: Allows you to email all your game users And armageddon dude cant you come up with your own game name that has not been made? i own the domain chaos-killah.com and it is for sale for $15 if you want it you can buy it but either wise ill just say your a copy cat.
  18. Re: Guess the next poster How the!!!, i havent posted in ages and u guessed right. :| Tezza next.
  19. Re: hey Well i hope RR's images are compressed. :lol:
  20. Re: 50/50(V2) for money and for crystals What the?? You dont put tab spaces inbetween the if() statment.
  21. Re: Allows you to email all your game users His game has been on pcriot.com for a year now. :|
  22. Re: Contemplating buying mccodes v2, how hard is it to secure the existing code? I would generaly take 1 day or 2 to secure all file's from input's etc, but hell umm a week might be for others.
  23. Re: hey Well david, you have seen my header.php thats all i need to run in header.php the rest i run either on other scripts. But as you see, my game still loads fast with the images. Because the header has an efficient coding.
  24. Re: 50/50(V2) for money and for crystals I would still use his, just because the code is easy readable.
  25. Re: Problem with User ID #s ALTER TABLE users AUTO_INCREMENT = 0; That should then run it to 34 or what ever the higher id is.
×
×
  • Create New...