• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

Recent content by TheSpaceDude

  1. T

    PHP If help

    I'm guessing you probably want this instead: if ((empty($_SESSION['username']) && empty($_SESSION['password'])) && (!$HTTP_COOKIE_VARS['user_id'] && !$HTTP_COOKIE_VARS['user_password'])) { I'm assuming that you are checking to see if the user is logged in. With your code both the...
  2. T

    Prompting a User with JS

    This should do it: http://dev.jimroot.com/clients/dank4000/javascriptPrompt.html (Click OK then view source)
  3. T

    help with PHP on website

    That's a VERY insecure way of doing this. By not restricting "id" to a certain directory you are letting a user include any file that the server has access to. This is a better way of doing it: <?php if (empty($_GET['id'])) { require 'index.php'; exit; } $path =...
  4. T

    Please review my simple site!

    Some of the fonts are hard to read (too small) and I don't really care for those up/down scroll arrows. I like the quotes though :p It needs some work but for a first site its not bad :)
  5. T

    PunkBuster GUID Database

    Who.... me? :devious2:
  6. T

    PunkBuster GUID Database

    Thanks for the reply! Theres not a whole lot I can do about the ads. The way I look at it, if you're using the correct browser *cough* you shouldn't have any problems :classic2:
  7. T

    PunkBuster GUID Database

    http://www.guiddb.com/ GUID search: http://www.guiddb.com/search/ Violation search: http://www.guiddb.com/search/violations.php If you play any PunkBuster enabled games, you should enjoy this site :). A little information about what the GUIDDB is can be found here...
  8. T

    i wanna learn PHP

    That has the exact same problem, no more secure than the first example :shame: The correct way of doing this would be: <? define('FILES_PATH', './files/'); // The path to your included files. define('FILES_EXT', '.html'); // The extension to included files. $g_pageName =...
  9. T

    Securing hidden fields in HTML Form

    If the browser can read it, a person can too.
  10. T

    Is this right? (PHP)

    <?php define('DOMAIN_NAME', 'http://www.yourdomain.com'); if (empty($_GET['p'])) { header('Location: ' . DOMAIN_NAME . '/index.php?p=news'); exit; } $path = 'templates/' . baseName($_GET['p']); $path .= empty($_GET['s']) ? 'index.ash' : '/' . baseName($_GET['s']) . '.ash'; if...
  11. T

    Two Questions

    Run xf86config and make sure everythings set up right for your video card/monitor. :classic2:
  12. T

    windows 1.x

    Just copy each of the directories to a disk, use setup on disk 1 to install (have to install dos first). You will have to do a search to find its hardware requirements, not sure how well it will run on a normal computer (I used vmware to run it)
  13. T

    windows 1.x

    Windows 1.01 Here is Windows 1.01 if anyone wants it, considering its age (and the fact that you can't buy it anymore), I don't think anyone's going to care :) http://www.thespacezone.com/misc/temp/Windows-1.01.rar
  14. T

    windows2000 and telnet

    PuTTY: http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html From the telnet prompt in 2k, just type open <host> (port) to connect to a server.
  15. T

    XP = bandwodth theif

    http://www.tweakxp.com/tweakxp/display.asp?id=282 :cool:
Back
Top