-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditrecord.php
More file actions
137 lines (111 loc) · 4.9 KB
/
editrecord.php
File metadata and controls
137 lines (111 loc) · 4.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Edit</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/styles.css">
<!-- Latest compiled and minified JavaScript -->
<script src="js/bootstrap.js"></script>
<!-- FONT AWESOME -->
<link rel="stylesheet" href="font-awesome/css/font-awesome.css" />
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="img/cbk.png"></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Address Book<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="addrecord.php">Add <span class="glyphicon glyphicon-pencil pull-right"></span> </a></li>
<li><a href="editrecord.php">Edit <span class="glyphicon glyphicon-edit pull-right"></span></a></li>
<li><a href="viewrecord.php">View <span class="glyphicon glyphicon-book pull-right"></span></a></li>
<li role="separator" class="divider"></li>
<li><a href="delete.php">Delete <span class="glyphicon glyphicon-trash pull-right"></span></a></li>
</ul>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="well well-sm"> <h1 class="text-center">Edit Contact Details</h1> </div>
<div class="container"><!-- /.This is the main DIV tag -->
<ul class="breadcrumb">
<li><a href="index.html">Home</a></li>
<li><a href="#">Update</a></li>
</ul>
<?php
$dbhost = 'localhost';
$dbname = 'companydb';
$dbuser = 'root';
$dbpass = '';
$dbcon = mysql_connect($dbhost, $dbuser, $dbpass);
if (!$dbcon) {
die( 'Unable to connect to the ' . mysql_error() );
}
mysql_select_db($dbname, $dbcon);
if(isset($_POST['update'])){
$updateQuery = "UPDATE CompanyDetails SET name='$_POST[txtname]', company='$_POST[txtcompany]', address='$_POST[txtaddress]', telephone='$_POST[txtphone]', email='$_POST[txtemail]', Notes='$_POST[txtNotes]' WHERE id='$_POST[hidden]'";
mysql_query($updateQuery, $dbcon);
}
mysql_select_db($dbname, $dbcon);
$sql = "SELECT * FROM CompanyDetails";
$myquery = mysql_query($sql,$dbcon);
if($myquery === FALSE) {
die(mysql_error()); // TODO: better error handling
};
echo "<div class='table-responsive'><table class='table'>
<tr>
<th>Name</th>
<th>Company</th>
<th>Address</th>
<th>Telephone</th>
<th>Email</th>
<th>Notes</th>
</tr>";
while($records = mysql_fetch_array($myquery)){
echo "<form id=myForm action=editrecord.php method=post name=myForm>";
echo "<tr>";
echo "<td>" . "<input name=txtname type=text class=form-control value=" . $records['name'] . " </td>";
echo "<td>" . "<input name=txtcompany type=text class=form-control value=" . $records['company'] . " </td>";
echo "<td>" . "<input name=txtaddress type=text class=form-control value=" . $records['address'] . " </td>";
echo "<td>" . "<input name=txtphone type=text class=form-control value=" . $records['telephone'] . " </td>";
echo "<td>" . "<input name=txtemail type=text class=form-control value=" . $records['email'] . " </td>";
echo "<td>" . "<textarea name=txtNotes type=text class=form-control>" . $records['Notes'] . "</textarea></td>";
echo "<td>" . "<input name=hidden type=hidden class=form-control value=" . $records['id'] . " </td>";
echo "<td>" . "<input name=update type=submit class='form-control btn-danger' value=UPDATE" . " </td>";
echo "</tr> ";
echo "</form> ";
}
echo "</table></div>";
mysql_close($dbcon);
?>
</div>
<footer class="footer"><!-- /.This is the Fixed Footer Section -->
<div class="container">
<p class="text-muted text-center">ADDRESS BOOK APP</p>
</div>
</footer>
</body>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery1.11.3.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</html>