adjusted the comments to have a uniform format

This commit is contained in:
Darrel Israel
2024-06-05 10:49:04 +08:00
parent ddf2f1b9ec
commit d76719e15a
+4 -2
View File
@@ -1,10 +1,12 @@
<?php
require 'dbconn.php';
$plainPassword = "admin"; // Replace with the desired password
// Replace with the desired password
$plainPassword = "admin";
$hashedPassword = password_hash($plainPassword, PASSWORD_DEFAULT);
$username = "admin"; // Replace with the username
// Replace with the username
$username = "admin";
// Set the default value for tbluserroles_roleid to 1
$defaultRoleId = 1;