A
Anonymous
Guest
After registration with an email ID the verification code were not send to the email to verify to login. Here is the code below:
NEED HELP BADLY !!!
NEED HELP BADLY !!!
Code:
<?php
//verify_email.php
include('master/Examination.php');
$exam = new Examination;
if(isset($_GET['type'], $_GET['code']))
{
if($_GET['type'] == 'master')
{
$exam->data = array(
':email_verified' => 'yes'
);
$exam->query = "
UPDATE admin_table
SET email_verified = :email_verified
WHERE admin_verification_code = '".$_GET['code']."'
";
$exam->execute_query();
$exam->redirect('master/login.php?verified=success');
}
if($_GET['type'] == 'user')
{
$exam->data = array(
':user_email_verified' => 'yes'
);
$exam->query = "
UPDATE user_table
SET user_email_verified = :user_email_verified
WHERE user_verification_code = '".$_GET['code']."'
";
$exam->execute_query();
$exam->redirect('login.php?verified=success');
}
}
?>