php wildes testen

This commit is contained in:
2022-12-08 00:29:06 +01:00
parent f5d47af766
commit 0afd2e476d
4 changed files with 51 additions and 17 deletions

12
www/liesmich.txt Normal file
View File

@ -0,0 +1,12 @@
https://www.php-einfach.de/experte/php-codebeispiele/loginscript/
CREATE TABLE `users` (
`id` INT NOT NULL AUTO_INCREMENT ,
`email` VARCHAR(255) NOT NULL ,
`passwort` VARCHAR(255) NOT NULL ,
`vorname` VARCHAR(255) NOT NULL DEFAULT '' ,
`nachname` VARCHAR(255) NOT NULL DEFAULT '' ,
`created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ,
`updated_at` TIMESTAMP on update CURRENT_TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ,
PRIMARY KEY (`id`), UNIQUE (`email`)
) ENGINE = InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;