Hello! According to the following code,what does the meaning of colon mark in this statement:
“INSERT INTO users (username, password) VALUES ( :username, : password )”;
code:
$username = $_POST["username"];
$password = $_POST["password"];
// create connection to database
// ...
// sanitize the inputs
// ...
// create an MD5 hash of the password
$password = md5($password);
// save the values to the database
$sql = "INSERT INTO users (username, password) VALUES (:username, :password)";
$stmt = $db->prepare($sql);
$stmt->execute(array(
":username" => $username,
":password" => $password
));