simple and easy, and effective way to enable password authentification on your php form scripts.
By : kittie
<? if (!empty($addtolog)) {
$connection = mysql_pconnect($dbhost,$dbuser,$dbpass); $verify = "SELECT * FROM tablename WHERE username='$admin' and password='$password'"; $verres = mysql_db_query($dbname,$verify,$connection); $num = mysql_numrows($verres); if ($num != "0") { $query = "INSERT INTO adminlog (id,admin,entry,date) VALUES ('0000','".$admin."','".$entry."','".$date."')"; $result = mysql_db_query($dbname,$query,$connection); mysql_close($connection); exit; } else { echo "username and password are either incorrect or not in the database"; exit; } } ?> <form method="post"> name: <input type="text" name="admin"><br> passwd <input type="password" name="password"><br> entry: <textarea cols="30" rows="4" wrap="virtual" name="entry"></textarea> <br><input type="submit" name="addtolog"> </form>
DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.