Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Gaetan Carabetta
projet_nf17_p19_tdg1_groupe2
Commits
2143256d
Commit
2143256d
authored
Jun 17, 2019
by
Osvaldo Valdivia Salas
Browse files
Upload New File
parent
155b060d
Changes
1
Hide whitespace changes
Inline
Side-by-side
application/addAnimal.php
0 → 100644
View file @
2143256d
<html>
<head>
<title>
Exercice
</title>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
</head>
<body>
<?php
$vHost
=
'tuxa.sme.utc'
;
$vPort
=
'5432'
;
$vData
=
'dbbdd0p117'
;
$vUser
=
'bdd0p117'
;
$vPass
=
'LpIHl1sZ'
;
$vConn
=
new
PDO
(
"pgsql:host=
$vHost
;port=
$vPort
;dbname=
$vData
"
,
$vUser
,
$vPass
);
$nom
=
$_POST
[
'nom'
];
$poids
=
$_POST
[
'poids'
];
$taille
=
$_POST
[
'taille'
];
$ddn
=
$_POST
[
'ddn'
];
$client
=
$_POST
[
'client'
];
$espece
=
$_POST
[
'espece'
];
if
(
$nom
!=
""
){
if
(
$poids
!=
""
){
if
(
$taille
!=
""
){
if
(
$client
!=
""
){
if
(
$espece
!=
""
){
$vSql
=
"INSERT INTO ANIMAL (nom,poids,taille,naissance,idClient,especeNom) VALUES ('
$nom
','
$poids
','
$taille
','
$ddn
','
$client
','
$espece
');"
;
$vSt
=
$vConn
->
prepare
(
$vSql
);
$vSt
->
execute
();
header
(
'Location: http://tuxa.sme.utc/~bdd0p117/animal.php'
);
}
else
echo
"Il faut donner une espece"
;
}
else
echo
"Il faut donner un client"
;
}
else
echo
"Il faut donner une taille"
;
}
else
echo
"Il faut donner un poids"
;
}
else
echo
"Il faut donner un nom"
;
?>
</body>
</html>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment