please help me... my password gets encrypted but not able to get in database
Posted on
16th Feb 2014 07:03 pm by
admin
hai guys,
please help me... in the following function my password gets encrypted but not able to get in database.is any error in the query please help me......
Did you know?Explore Trending and Topic pages for more stories like this.
<?php
$email = $_POST['username'];
$oldpass=$_POST['password'];
$newpass=$_POST['newpass'];
$conpass=$_POST['confirmpass'];
$encry_oldpass=md5($oldpass); //encrypting old password
$con = mysql_connect("localhost","root","");
mysql_select_db("content_management",$con);
$result=mysql_query("SELECT * FROM register_data WHERE eMail='".$email."' and password='".$encry_oldpass."' and isValidate=0 and isDelete=0");
$count=mysql_num_rows($result);
if((!empty($newpass)&&!empty($conpass))&&($newpass==$conpass)&&($count=='0'))
{
$encry_conpass=md5($conpass);//encrypting confirm password
$result2=mysql_query("UPDATE register_data SET password='$encry_conpass' WHERE eMail='".$email."' and password='".$encry_oldpass."' and isValidate=0 and isDelete=0");
echo "Password Chamged Successfully";
header("location:..............."); // redirect to login page
}
else
{
echo"Password Change Fails";
// header("location:..............."); // redirect to password change page
}
?>
No comments posted yet
Your Answer:
Login to answer
111
36
Other forums
How to know if online site made with PHP
Hello,
I see some sites that does not display extensions at all , for example:
www.site.co
PHP/Database issue
My friend is helping me make a database where you go to a certain webpage of my site and the page wi
How to read CSS message data
Hi,
I have a requirement here. When working as a Dev angel for multiple customers its really di
Help Import Animoto and Youtube
CAn someone help me urgently want to allow users on my website to import youtube/revver/dailymotion
Dealing with code in db query
I am dealing with C code and I need to make sure it is encoded some how to ensure its integrity and
SWF image using php?
Hello once again.
My latest en devour requires me to produce an image of a static .swf that i
Character increment
Hi,
I am facing a scenario like above,but in my case i want to show up like Col A,Col B etc..
Image resize
Hi again fellers
I managed to sort out the issues with the folder,
Final hurdle is th
session checking in page load
hai all
I have a web site is www.Mryas.com in this my login page is Page1.aspx its co
Required to login help
I'm trying to set up my site so users have to be logged into the forum to access the site.I've been