Thanks Greg,
I do have the timestamp generated with each record input. I hadn't thought to check the access logs though. What would I be looking for there?
Cheers,
Kevin
Search found 4 matches
- Tue Oct 26, 2010 11:34 am
- Forum: PHP - Security
- Topic: Help - unknown blank records being submitted to mysql db
- Replies: 4
- Views: 1898
- Mon Oct 25, 2010 1:13 pm
- Forum: PHP - Security
- Topic: Help - unknown blank records being submitted to mysql db
- Replies: 4
- Views: 1898
Help - unknown blank records being submitted to mysql db
Hi, I've been searching for a cause/solution online, but haven't found anything. I hope someone here can help. Here's my setup: I have a set of pages set up which require a user to login and authenticate against a db table of registered users. Once logged-in, they have access to an online form to en...
- Tue Mar 02, 2010 7:04 pm
- Forum: PHP - Code
- Topic: help - setting input box value to variable
- Replies: 2
- Views: 711
Re: help - setting input box value to variable
tasairis, you're awsome, thank you! I changed the session code to: <?php session_start(); if(!isset($_SESSION["myusername"])) { header("location:main_login.html"); } ?> and the input box code to: <input type = "text" name = "loginname" value = "<?php ech...
- Tue Mar 02, 2010 6:33 pm
- Forum: PHP - Code
- Topic: help - setting input box value to variable
- Replies: 2
- Views: 711
help - setting input box value to variable
Hi, I have a set of html and php pages which requires a user to login with a valid username and password before they are brought to a data entry screen. Once logged in a session is registered for the data entry page, and the following code is at the begining of the page: <?php session_start(); if(...