You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WF-Website/script/user.php

18 lines
406 B

<?php
class User{
public string $id;
public string $passwd;
public string $img;
public string $email;
function __construct(string $identify, string $password, string $image, string $mail) {
$this->id = $identify;
$this->passwd = $password;
$this->img = $image;
$this->email = $mail;
}
}
function __checkLogin(){
/*Envoie donnée à la bdd*/
}
?>