Hi Guys I am looking for someone with php knowledge who can help me with a quick job. I have a membership website, which works fine when members log into the site. I have a few local databases members can search. I am logging all activities when members search my databases, but I need help from someone who can assist me with the following problem: I need the username, when members log into my website, to be logged along with the searches they conduct. Currently members must manually enter their username when conducting a search, which I dont want anymore. I will pay $10 to someone who can help me with this.
On search submit do something like: if(isset($_POST['submit'])) { $search = $_POST['search']; $user = $_SESSION['username']; //e.g. user_search is the table mysql_query("INSERT into user_searches SET search= '$search' WHERE username='$user'"); } PHP: