Recent content by bo75007

  1. B

    Gta 4 game is coming freezes what can i do for plz tel me my pc intel core 2due 2gb of ddr2 ram 4 g8400 512 mb?

    Make sure you have the latest drivers for you video card from nvidia.com the game had some issues with older drivers. Also that graphics card is not very good for playing.
  2. B

    delay text html/javascript code?

    simple, use the wait or sleep function i.e. <script> sleep(500); </script> this will halt your script for .5 seconds.
  3. B

    delay text html/javascript code?

    simple, use the wait or sleep function i.e. <script> sleep(500); </script> this will halt your script for .5 seconds.
  4. B

    PHP file read to ban IP addresses?

    <?php $url = 'put your ip banlist filename here'; $iplist = explode(',', file($url)); for ($j=0; $j < count($iplist); $j++) { if(preg_match('#' . $iplist[$j] . '#i', $_SERVER['REMOTE_ADDR'])) { // This is where you put what you want to happen // For now we will just kill the script...
  5. B

    PHP file read to ban IP addresses?

    <?php $url = 'put your ip banlist filename here'; $iplist = explode(',', file($url)); for ($j=0; $j < count($iplist); $j++) { if(preg_match('#' . $iplist[$j] . '#i', $_SERVER['REMOTE_ADDR'])) { // This is where you put what you want to happen // For now we will just kill the script...
Back
Top