Results 1 to 9 of 9
Threaded View
-
31st Dec 2011, 09:00 AM #6Respected MemberWebsite's:
DL4Everything.com Soft2050.inFound it and tested too! it does works now
PHP Code:<?php
if (isset($_POST["boxuser"]) and isset($_POST["boxpass"])) { // use checks to prevent from direct page access
$con= mysql_connect("localhost","usermaster","") or die (mysql_error());
$cName= mysql_real_escape_string($_POST["boxuser"]); // prevent mysql injections
$cPass= mysql_real_escape_string($_POST["boxpass"]); // prevent mysql injections
mysql_select_db("mynewdb", $con);
//$query = "select * from mytable where uname=".$cName."and upass=".$cPass;
$query = "SELECT * FROM mytable WHERE uname='$cName' and upass='$cPass'";
$result = mysql_query($query, $con);
$row = mysql_num_rows($result);
if ($row > 0)
{
echo "Login successful.";
}
else
{
echo "Login failed.";
}
mysql_close();
} else {
die('RETRY AGAIN FROM THE LOGIN PAGE');
}
?>
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Error Detected in sitemap XML. How to remove error?
By Bobby3711 in forum Web Application/Script SupportReplies: 1Last Post: 21st Mar 2012, 03:51 PM -
Rapidleech error: Error openning rar process
By tractor3231 in forum Server ManagementReplies: 13Last Post: 14th Dec 2011, 04:35 AM -
HTTP Error 500 (Internal Server Error):
By joshmoore in forum Technical Help Desk SupportReplies: 4Last Post: 25th Nov 2011, 03:59 AM -
wtf happened? (ipb 3.23 skin error causes fatal error)
By mrHunt in forum Technical Help Desk SupportReplies: 1Last Post: 25th Nov 2011, 03:55 AM -
Adding Domain Error in cPanel (Error from park wrapper:)
By Ryza in forum General DiscussionReplies: 0Last Post: 20th Feb 2011, 01:57 AM
themaManager - edit and manage...
Version 4.19 released. Open older version (or...