Jump to content

Miko

Members
  • Posts

    131
  • Joined

  • Last visited

    Never

Everything posted by Miko

  1. Hello, I was wondering if it is possible to recover the windows session? Let me explain, I'm building an intranet webapplication for our users and I would like that when the users that are "accessing" the web application with IE, that I could recover the Windows userID? So the users does not have to login in the webapplication again to have more access to other tabs? Is this possible? I know that I could work with login scripts and Cookies etc .. but this isn't what I want. Anyone an idea? Thanks
  2. Owkay, thanks! it works
  3. Hi, Your right, now it works But will this work for my php script? I use $_POST and variables to define it.
  4. Thought allso that would work but it strangely enough, it doesn't. I can still click all three at the same time ???
  5. Hello, I'm making a form with a search input + 3 different checkboxes. So making the form is absolutely no problem, the search input either. The thing that I want is that a user can select one of the 3 checkboxes and in function of that (+ search input) they will search in the database. Anyone an idea how to pull this together? Thanks,!
  6. Hello, I'm quite new to PHP development so it could be that I'm going to ask some stupid questions So I'm making a login script and I'm running to a small problem I'm getting this error: Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /Applications/MAMP/htdocs/my_projects/first_test_project/auth.php on line 15 This comes when I perform the login: my php code: <?php require "header.php"; function controle($username,$password){ $sql = "SELECT * FROM klant WHERE Username = '$username' AND Password = '$password'"; } $username = $_POST['username']; $password = $_POST['password']; $login = $_POST['login']; $result = mysql_query($sql); if($login && $username && $password){ $num_rows = mysql_num_rows($result); if($num_rows == 1){ $_SESSION['username'] = $username; $_SESSION['password'] = $password; } } if(controle($_SESSION['username'], $_SESSION['password']) == false){ ?> <form action="<?php $_SERVER['PHP_SELF'] ?>" method="post"> <table width="200px"> <tr> <td>Username:</td> <td><input type="text" name="username"></td> </tr> <tr> <td>Password:</td> <td><input type="password" name="password"></td> </tr> <tr> <td><input type="submit" name="login" value="Login"></td> </tr> </table> </form> <?php } require "footer.php"; ?> I'm thinking that I made a mistake somewhere, but don't know where ???
×
×
  • 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.