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
c0a7a8c9
Commit
c0a7a8c9
authored
Nov 08, 2019
by
rama chandra
Browse files
Merge branch 'master' of
https://code.swecha.org/KLUGLUG/blood-service-portal
parents
d194976d
3574da49
Changes
3
Hide whitespace changes
Inline
Side-by-side
admin/dashboard.php
View file @
c0a7a8c9
...
...
@@ -15,6 +15,10 @@ include("auth.php"); //include auth.php file on all secure pages ?>
<
p
><
a
href
=
"index.php"
>
Home
</
a
><
p
>
<
p
><
a
href
=
"insert.php"
>
Insert
New
Record
</
a
></
p
>
<
p
><
a
href
=
"view.php"
>
View
Records
</
a
><
p
>
<
p
><
a
href
=
"view1.php"
>
View
Records
of
Requested
person
and
Donated
person
deatils
</
a
><
p
>
<
p
><
a
href
=
"insertintodonor.php"
>
Donor
and
Blood
Requiested
Person
Details
</
a
></
p
>
<
p
><
a
href
=
"bulkupload.html"
>
To
Bulk
Upload
the
Data
</
a
></
p
>
<
form
method
=
"POST"
action
=
"filter_search.php"
class
=
"bg-white rounded pb_form_v1"
>
<
div
class
=
"form-group"
>
...
...
admin/insertintodonor.php
0 → 100644
View file @
c0a7a8c9
<?php
require
(
'db.php'
);
include
(
"auth.php"
);
$status
=
""
;
if
(
isset
(
$_POST
[
'new'
])
&&
$_POST
[
'new'
]
==
1
)
{
$Rname
=
$_REQUEST
[
'Rname'
];
$blood1
=
$_REQUEST
[
'blood1'
];
$Dname
=
$_REQUEST
[
'Dname'
];
$ddate
=
$_REQUEST
[
'ddate'
];
$Hname
=
$_REQUEST
[
'Hname'
];
$ins_query
=
"INSERT INTO donations (Rname,blood1,Dname,ddate,Hname) VALUES ('
$Rname
', '
$blood1
', '
$Dname
','
$ddate
','
$Hname
')"
;
mysqli_query
(
$con
,
$ins_query
)
or
die
(
mysql_error
());
$status
=
"New Record Inserted Successfully.</br></br><a href='view.php'>View Inserted Record</a>"
;
}
?>
<!DOCTYPE html>
<html>
<head>
<meta
charset=
"utf-8"
>
<title>
Insert New Record
</title>
<link
rel=
"stylesheet"
href=
"css/style.css"
/>
</head>
<body>
<div
class=
"form"
>
<p><a
href=
"dashboard.php"
>
Dashboard
</a>
|
<a
href=
"view.php"
>
View Records
</a>
|
<a
href=
"logout.php"
>
Logout
</a></p>
<div>
<h1>
Insert New Record
</h1>
<form
name=
"form"
method=
"post"
action=
""
>
<input
type=
"hidden"
name=
"new"
value=
"1"
/>
<p><input
type=
"text"
name=
"Rname"
placeholder=
"Requested person Name"
required
/></p>
<p><input
type=
"text"
name=
"blood1"
placeholder=
"Enter BLood Group"
required
/></p>
<p><input
type=
"text"
name=
"Dname"
placeholder=
"eneter donor name"
required
/></p>
<p><input
type=
"date"
name=
"ddate"
placeholder=
"donated date"
required
/></p>
<p><input
type=
"text"
name=
"mobile"
placeholder=
"Enter Mobile No"
required
/></p>
<p><input
type=
"text"
name=
"Hname"
placeholder=
"Enter Hospital Name"
required
/></p>
<p><input
name=
"submit"
type=
"submit"
value=
"insert"
/></p>
</form>
<p
style=
"color:#FF0000;"
>
<?php
echo
$status
;
?>
</p>
</div>
</div>
</body>
</html>
admin/view1.php
0 → 100644
View file @
c0a7a8c9
<?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
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