$sql = "insert into user (account,password,mail,phone,) VALUES (". $account.",".$password.",".$mail.",".$phone.")";
$query = $this- > link- > query ($sql);
when inserting data into the database, the VALUES parentheses should be written in the form of variables. Is this correct?