This commit is contained in:
2022-09-20 09:46:06 +02:00
parent 3ef5375b73
commit 56a0519cee
6 changed files with 136 additions and 0 deletions

22
TP/TP2_codes/index.php Normal file
View File

@ -0,0 +1,22 @@
<html><body>
<h1>MyCorp server connexion a BD</h1>
<p>Page de cotainnexion à ma base de données</p>
<form method="get" action="connect.php">
<fieldset>
<legend>Login : </legend>
<input type="text" name="login"/>
</fieldset>
<fieldset>
<legend>Password : </legend>
<input type="password" name="motdepasse"/>
</fieldset>
<fieldset>
<legend>DataBase Name : </legend>
<input type="text" name="dbname"/>
</fieldset>
<input type="submit" name="submit" value="Se connecter"/>
</form>
</body></html>