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
KLUGLUG
Blood Service Portal
Commits
395ed77e
Commit
395ed77e
authored
Nov 08, 2019
by
rama chandra
Browse files
Delete view1.php
parent
3574da49
Changes
1
Hide whitespace changes
Inline
Side-by-side
admin/view1.php
deleted
100644 → 0
View file @
3574da49
<?php
require
(
'db.php'
);
include
(
"auth.php"
);
$query
=
"SELECT * from donations "
;
$result
=
mysqli_query
(
$con
,
$query
)
or
die
(
mysqli_error
());
$row
=
mysqli_fetch_assoc
(
$result
);
?>
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<title>
Update Record
</title>
<link
rel=
"stylesheet"
href=
"css/style.css"
/>
</head>
<body>
<div
class=
"form"
>
<p><a
href=
"index.php"
>
Home
</a>
|
<a
href=
"insert.php"
>
Insert New Record
</a>
|
<a
href=
"logout.php"
>
Logout
</a></p>
<h2>
View Records
</h2>
<table
width=
"100%"
border=
"1"
style=
"border-collapse:collapse;"
>
<thead>
<tr><th><strong>
Requested Person Name
</strong></th><th><strong>
Requested Blood Group
</strong></th><th><strong>
Donor Name
</strong></th><th><strong>
Donated date
</strong></th><th><strong>
Hospital Name
</strong></th></tr>
</thead>
<tbody>
<?php
$count
=
1
;
$sel_query
=
"Select * from donations ORDER BY ddate desc;"
;
$result
=
mysqli_query
(
$con
,
$sel_query
);
while
(
$row
=
mysqli_fetch_assoc
(
$result
))
{
?>
<tr><td
align=
"center"
>
<?php
echo
$row
[
"Rname"
];
?>
</td><td
align=
"center"
>
<?php
echo
$row
[
"blood1"
];
?>
</td><td
align=
"center"
>
<?php
echo
$row
[
"Dname"
];
?>
</td><td
align=
"center"
>
<?php
echo
$row
[
"ddate"
];
?>
</td><td
align=
"center"
>
<?php
echo
$row
[
"Hname"
];
?>
</td></tr>
<?php
$count
++
;
}
?>
</tbody>
</table>
</div>
</body>
</html>
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