I have an old file for employee registration. In this php file I have a sql query as follows:
$result3 = mysqli_query("insert into emp_username_db values ('$remp_id', password('password'), '', '', now(), '$etgi', '')");
if (!$result3)
die('Invalid query3: ' . mysqli_error());
Can anybody help me know what is the format used for password creation? I mean the method password(‘password’). Trying to find out the method, please help me know it.