webd/includes/account.php
Showing 16 of 16 total issues
A file should declare new symbols (classes, functions, constants, etc.) and cause no other side effects, or it should execute logic with side effects, but should not do both. The first symbol is defined on line 34 and the first side effect is on line 32. Open
Open
<?php
- Exclude checks
Only one argument is allowed per line in a multi-line function call Open
Open
$dbh = new PDO($dsn, $db_user, $db_pass,
- Exclude checks
Only one argument is allowed per line in a multi-line function call Open
Open
$dbh = new PDO($dsn, $db_user, $db_pass,
- Exclude checks
Line exceeds 120 characters; contains 130 characters Open
Open
$query = $dbh->prepare('UPDATE user_info SET mail_address = :mail, password = :new_password WHERE user_id=:user_id;');
- Exclude checks
Expected 1 space after IF keyword; 0 found Open
Open
if(isset($_POST['submit'])){
- Exclude checks
Line indented incorrectly; expected 4 spaces, found 8 Open
Open
}else{
- Exclude checks
Expected 1 space after IF keyword; 0 found Open
Open
if(!isset($_SESSION['login_user'])) {
- Exclude checks
Expected 1 space after closing brace; 0 found Open
Open
}else{
- Exclude checks
Opening parenthesis of a multi-line function call must be the last content on the line Open
Open
$dbh = new PDO($dsn, $db_user, $db_pass,
- Exclude checks
Expected 1 space after closing parenthesis; found 0 Open
Open
if(isset($_POST['submit'])){
- Exclude checks
Line indented incorrectly; expected 4 spaces, found 8 Open
Open
if ($new_pass == $confirm_pass) {
- Exclude checks
Line indented incorrectly; expected 4 spaces, found 8 Open
Open
}
- Exclude checks
Expected 1 newline at end of file; 0 found Open
Open
}
- Exclude checks
Expected 1 space after ELSE keyword; 0 found Open
Open
}else{
- Exclude checks
Closing parenthesis of a multi-line function call must be on a line by itself Open
Open
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION));
- Exclude checks
Multi-line function call not indented correctly; expected 12 spaces but found 20 Open
Open
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION));
- Exclude checks