Jump to content

Jessica

Staff Alumni
  • Posts

    8,968
  • Joined

  • Last visited

  • Days Won

    41

Posts posted by Jessica

  1. What is a combo box? If you're asking how to create an HTML form, then you need to do some searching and read some tutorials before asking such a vague question.

    Then, read up on connecting to an Access database. I don't use Access, but it seems like the tutorial I linked to goes over how to connect to Access using PHP.
  2. http://en.wikipedia.org/wiki/IP_address

    An IP address (Internet Protocol address) is a unique address that devices use in order to identify and communicate with each other on a computer network utilizing the Internet Protocol standard (IP)—in simpler terms, a computer address. Any participating network device—including routers, computers, time-servers, printers, Internet fax machines, and some telephones—can have their own unique address. Also, many people can find personal information through IP addresses.

    An IP address can also be thought of as the equivalent of a street address or a phone number (compare: VoIP(voice over (the) internet protocol)) for a computer or other network device on the Internet. Just as each street address and phone number uniquely identifies a building or telephone, an IP address can uniquely identify a specific computer or other network device on a network.

    An IP address can appear to be shared by multiple client devices either because they are part of a shared hosting web server environment or because a proxy server (e.g., an ISP or anonymizer service) acts as an intermediary agent on behalf of its customers, in which case the real originating IP addresses might be hidden from the server receiving a request. The analogy to telephone systems would be the use of predial numbers (proxy) and extensions (shared).
  3. Barand - I used to do it that way, but what happens when you have a user who needs access to stuff at level 3, and 5, but not at 4? I have found it easier to just categorize things. In my admin section there are areas like Users, Forum, Etc, and admins are allowed into certain areas, instead of having a level. This has made it easier for this approach - others might work differently for different situations.
  4. There are dynamic IPs, and you can also just request your IP to be changed.
    You can also use masking services and proxies.

    It can help when trying to detect multiple users, but it's not very accurate. My husband and I are both on several sites, and we use the same IP. We use different emails and names, so we are not the same person. Allow people to use the same IP, and simply record it to help determine if it might be the same person.

    For example - someone registered on my site once with two different emails, which were similar, and the same IP. Now, it could have been two different people - but they used the same birthdate and password - that was why I figured it was the same person.
  5. Save the values to the session.

    On the processing page, create an array, say $form. Then say $form['name'] = $_POST['name']; //Make sure to actually sanitize your data.

    Before redirecting back to the form with the error, do $_SESSION['form'] = $form;
    On the form page get the form out of the session: $form = $_SESSION['form'];
    In each of the inputs add value="<?=$form['name']?>"

    etc.
  6. What? You don't want your members to be able to login from anywhere? That seems kind of restrictive.

    IP tracking is a very poor method for tracking users. There are many ways to change or mask your IP address.
  7. "Opens or reuses a connection to a MySQL server."
    This makes me think if there is already a connection open, it will use that one. So you don't really need to check...

    I always assign to a variable also. I wrap my database connection in a function for error handling, etc, and use pconnect.
  8. Then you need to think a bit more...you're getting very descriptive errors and ignoring them.
    It says there is an unknown column. Look at your sql. Does dlp_library have a column called current_holder?

    I don't know JOINS very well, you should read up on them to make sure your query is right. The problem is in your SQL.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.