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
a4406706
Commit
a4406706
authored
Oct 26, 2000
by
Leigh B. Stoller
Browse files
Use named array access instead of numbered.
parent
80963869
Changes
1
Hide whitespace changes
Inline
Side-by-side
www/modusr_form.php3
View file @
a4406706
...
...
@@ -57,13 +57,13 @@ if (! $info_result) {
TBERROR
(
"Database Error getting user info for user
$uid
:
$err
\n
"
,
1
);
}
$row
=
mysql_fetch_
row
(
$info_result
);
$usr_expires
=
$row
[
0
];
$usr_email
=
$row
[
1
];
$usr_addr
=
$row
[
2
];
$usr_name
=
$row
[
3
];
$usr_phone
=
$row
[
4
];
$usr_passwd
=
$row
[
5
];
$row
=
mysql_fetch_
array
(
$info_result
);
$usr_expires
=
$row
[
usr_expires
];
$usr_email
=
$row
[
usr_email
];
$usr_addr
=
$row
[
usr_addr
];
$usr_name
=
$row
[
usr_name
];
$usr_phone
=
$row
[
usr_phone
];
$usr_passwd
=
$row
[
usr_pswd
];
#
# Generate the form.
...
...
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