Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8142281
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T12:45:51+00:00 2026-06-06T12:45:51+00:00

I am having a problem with inserting a username and password in a login

  • 0

I am having a problem with inserting a username and password in a login system using cyrillic characters.

The password is decoded as SHA1, when i create a user with cyrillic characters it doesn’t work for me!

Can you tell me if i need to insert something special in it?

code:

<?php
define(DOC_ROOT,dirname(__FILE__)); // To properly get the config.php file
$username = $_POST['username']; //Set UserName
$password = $_POST['password']; //Set Password
$msg ='';
if(isset($username, $password)) {
ob_start();
include(DOC_ROOT.'/config.php'); //Initiate the MySQL connection
// To protect MySQL injection (more detail about MySQL injection)
$myusername = stripslashes($username);
$mypassword = stripslashes($password);
$myusername = mysqli_real_escape_string($dbC, $myusername);
$mypassword = mysqli_real_escape_string($dbC, $mypassword);
$sql="SELECT * FROM login_subadmin WHERE user_name='$myusername' and user_pass=SHA1('$mypassword')";
$result=mysqli_query($dbC, $sql);
// Mysql_num_row is counting table row
$count=mysqli_num_rows($result);
// If result matched $myusername and $mypassword, table row must be 1 row
if($count==1){
// Register $myusername, $mypassword and redirect to file "admin.php"
session_register("myusername");
session_register("mypassword");

header("location:index.php");
}
else {
$msg = "Wrong Username or Password. Please retry";
header("location:login.php?msg=$msg");
}
ob_end_flush();
}
else {
header("location:login.php?msg=Please enter some username and password");
}
?>

Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T12:45:53+00:00Added an answer on June 6, 2026 at 12:45 pm

    Make sure to set your database and code + header to handle the page as UTF-8. It has to be the same charset all over the page. You could also use PHP’s hash function for SHA1.

    Example code:

    <?php
    $myUsername=mysqli_real_escape_string($_POST['username']);
    $password=$_POST['password'];
    $msg="";
    
    if(isset($username, $password))
    {
        ob_start();
        include(DOC_ROOT.'/config.php'); //Initiate the MySQL connection
    
        $password=sha1($password);
        $result=mysqli_query("SELECT * FROM `login_subadmin` WHERE user_name='$myUsername' AND `user_pass`='$password'", $sql);
    
        // Mysql_num_row is counting table row
        $count=mysqli_num_rows($result);
    }
    ?>
    

    Remember that the hash might get different results when using mysqli_real_escape_string(); in the password hash. If you already hash:ed passwords, just escape the password before you hash it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using curl to access Hbase with REST. I'm having a problem in inserting
I am having a problem with inserting a new row in database using Doctrine
I have a code for inserting values in ASP.net using vb. I'm having problem
I am having a problem inserting and removing objects to/from the database using Linq
I'm having a problem using the java.text.MessageFormat object. I'm trying to create SQL insert
I am having problem with inserting string values (user_name, password) into a table, named
I'm having a problem in inserting data in php. It sometimes create a character
Hey I'm having a problem with inserting an ICanHaz.js template into a jquery mobile
I'm having a strange problem in that I have php inserting text into a
I am having problem using mvc:resources in spring 3.1 configuration. Initially i was working

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.