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
10c64ecb
Commit
10c64ecb
authored
Nov 08, 2019
by
Polavarapu Satya Durga Lalitha Rao Sarma
Browse files
Upload New File
parent
17edab14
Changes
1
Hide whitespace changes
Inline
Side-by-side
admin/insertintodonor.php
0 → 100644
View file @
10c64ecb
<?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>
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