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
37c72682
Commit
37c72682
authored
Dec 11, 2000
by
Leigh B. Stoller
Browse files
Add experiment list (linked of course) to project dump. Useful.
parent
860f55b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
www/showproject.php3
View file @
37c72682
...
...
@@ -80,6 +80,30 @@ if (mysql_num_rows($query_result)) {
echo
"</table>
\n
"
;
}
#
# A list of project experiments.
#
$query_result
=
mysql_db_query
(
$TBDBNAME
,
"SELECT eid,expt_name FROM experiments WHERE pid=
\"
$pid
\"
"
);
if
(
mysql_num_rows
(
$query_result
))
{
echo
"<center>
<h3>Project Experiments</h3>
</center>
<table align=center border=1>
\n
"
;
while
(
$row
=
mysql_fetch_row
(
$query_result
))
{
$eid
=
$row
[
0
];
$name
=
$row
[
1
];
echo
"<tr>
<td>
<A href='showexp.php3?exp_pideid=
$pid
\$\$
$eid
'>
$name
</a>
</td>
</tr>
\n
"
;
}
echo
"</table>
\n
"
;
}
echo
"</center>
\n
"
;
#
...
...
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