bodging some more

master
LinuxMint4Ever 2020-02-20 00:52:24 +01:00
parent 62eaeee962
commit 8350335430
1 changed files with 1 additions and 1 deletions

View File

@ -7,5 +7,5 @@ $password = $_POST['password'];
$pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!'); $pdo = new PDO('mysql:host=localhost;dbname=web', 'webstuff', 'Schei// auf Pa$$w0rter!');
$statement = $pdo->prepare('SELECT id, name, authentication_algorithm, authentication_string FROM users WHERE name = :username;'); $statement = $pdo->prepare('SELECT id, name, authentication_algorithm, authentication_string FROM users WHERE name = :username;');
$result = $statement->execute(array('username' => $username)); $result = $statement->execute(array('username' => $username));
echo $result; echo $result['name'];
?> ?>