Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
ff479ad2
Commit
ff479ad2
authored
Nov 16, 2000
by
Leigh B. Stoller
Browse files
Add project member list, hyperlinked to their info page.
parent
dfda3405
Changes
1
Hide whitespace changes
Inline
Side-by-side
www/showproject.php3
View file @
ff479ad2
...
...
@@ -56,6 +56,29 @@ echo "<center>
</center>
\n
"
;
SHOWPROJECT
(
$pid
,
$uid
);
#
# A list of project members.
#
$query_result
=
mysql_db_query
(
$TBDBNAME
,
"SELECT uid FROM proj_memb WHERE pid=
\"
$pid
\"
"
);
if
(
mysql_num_rows
(
$query_result
))
{
echo
"<center>
<h3>Project Members</h3>
</center>
<table align=center border=1>
\n
"
;
while
(
$row
=
mysql_fetch_row
(
$query_result
))
{
$target_uid
=
$row
[
0
];
echo
"<tr><td>
<A href='showuser.php3?uid=
$uid
&target_uid=
$target_uid
'>
$target_uid
</A>
</td>
</tr>
\n
"
;
}
echo
"</table>
\n
"
;
}
echo
"</center>
\n
"
;
#
...
...
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