?php
table
tr
th
Nom
de
l'
employé
/
th
th
Salaire
/
th
/
tr
?php
$result
=
mysql_query($conn
,
"SELECT
id
,
name
,
salary
FROM
employees")
;
while
(list($id
,
$name
,
$salary
)
=
mysql_fetch_row
($result)
)
{
print
(
"
tr
\n"
.
"
td
a
href=\"info.php3?id=$id\
"
$name
/
a
/
td
\n"
.
"
td
$salaire
/
td
\n"
.
"
/
tr
\n")
;
}
?
/
table
?
|