Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
projet_nf17_p19_tdg1_groupe2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Gaetan Carabetta
projet_nf17_p19_tdg1_groupe2
Commits
ffea15c3
Commit
ffea15c3
authored
Jun 19, 2019
by
Osvaldo Valdivia Salas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upload New File
parent
89c2535e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
63 additions
and
0 deletions
+63
-0
application/animal.php
application/animal.php
+63
-0
No files found.
application/animal.php
0 → 100644
View file @
ffea15c3
<html>
<head>
<title>
Exercice
</title>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"style.css"
>
</head>
<body>
<h1>
Information des animaux
</h1>
<table
border=
"1"
>
<tr>
<th>
idAnimal
</th>
<th>
Nom
</th>
<th>
Poids
</th>
<th>
Taille
</th>
<th>
Naissance
</th>
<th>
idClient
</th>
<th>
Espece
</th>
<th>
Statistiques
</th>
<th>
Supprimer
</th>
</tr>
<?php
// Connexion à la base de données
$vHost
=
'tuxa.sme.utc'
;
$vPort
=
'5432'
;
$vData
=
'dbbdd0p117'
;
$vUser
=
'bdd0p117'
;
$vPass
=
'LpIHl1sZ'
;
try
{
$vConn
=
new
PDO
(
"pgsql:host=
$vHost
;port=
$vPort
;dbname=
$vData
"
,
$vUser
,
$vPass
);
}
catch
(
PDOException
$e
){
echo
"Erreur de connection '
$e
'"
;
}
// Affichage du tableau de données
$vSql
=
'select * from Animal;'
;
try
{
$vSt
=
$vConn
->
prepare
(
$vSql
);
$vSt
->
execute
();
while
(
$vResult
=
$vSt
->
fetch
(
PDO
::
FETCH_BOTH
))
{
echo
'<tr>'
;
echo
"<td>
$vResult[0]
</td>"
;
echo
"<td>
$vResult[1]
</td>"
;
echo
"<td>
$vResult[2]
</td>"
;
echo
"<td>
$vResult[3]
</td>"
;
echo
"<td>
$vResult[4]
</td>"
;
echo
"<td>
$vResult[5]
</td>"
;
echo
"<td>
$vResult[6]
</td>"
;
echo
"<td><form action='statAnimal.php' method='post'> <input type='text' name='idAnimal' value=
$vResult[0]
hidden/> <input type='submit' value='Statistiques'> </form></td>"
;
echo
"<td><form action='remAnimal.php' method='post'> <input type='text' name='idAnimal' value=
$vResult[0]
hidden/> <input id='btnRemove' type='submit' value='X'> </form></td>"
;
echo
'</tr>'
;
}
}
catch
(
PDOException
$e
){
echo
"Erreur de requete '
$e
'"
;
}
?>
</table>
</body>
</html>
Write
Preview
Markdown
is supported
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