🎨 General visuals improvements

This commit is contained in:
Florian SYLVAIN
2021-12-10 12:14:03 +01:00
parent 0fe115d371
commit 84edef43dd
5 changed files with 126 additions and 22 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ class dump {
$author = '%' . $author . '%';
$stmt = $pdo->prepare("SELECT * FROM theses WHERE author LIKE :author;");
$stmt = $pdo->prepare("SELECT * FROM theses WHERE author LIKE :author ORDER BY author;");
$stmt->bindParam(':author', $author, PDO::PARAM_STR, 100);
$stmt->execute();