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
2195929c
Commit
2195929c
authored
May 24, 2002
by
Mac Newbold
Browse files
Impose an ordering on people and expts so you can find the one you're looking for...
parent
30452e80
Changes
1
Show whitespace changes
Inline
Side-by-side
www/showproject.php3
View file @
2195929c
...
...
@@ -55,7 +55,7 @@ SHOWPROJECT($pid, $uid);
$query_result
=
DBQueryFatal
(
"SELECT m.*,u.* FROM group_membership as m "
.
"left join users as u on u.uid=m.uid "
.
"WHERE pid='
$pid
' and gid='
$pid
'"
);
"WHERE pid='
$pid
' and gid='
$pid
'
order by u.uid
"
);
if
(
mysql_num_rows
(
$query_result
))
{
echo
"<center>
<h3>Project Members</h3>
...
...
@@ -100,7 +100,7 @@ if (mysql_num_rows($query_result)) {
# A list of project experiments.
#
$query_result
=
DBQueryFatal
(
"SELECT eid,expt_name FROM experiments WHERE pid='
$pid
'"
);
DBQueryFatal
(
"SELECT eid,expt_name FROM experiments WHERE pid='
$pid
'
order by eid
"
);
if
(
mysql_num_rows
(
$query_result
))
{
echo
"<center>
<h3>Project Experiments</h3>
...
...
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