-
Notifications
You must be signed in to change notification settings - Fork 0
/
editrentalclient.php
131 lines (80 loc) · 2.83 KB
/
editrentalclient.php
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
<?php
include 'mysql.php';
echo "<html>\n";
echo "\t<head>\n";
echo "\t\t<link href=\"inc/style.css\" rel=\"stylesheet\" type=\"text/css\">\n";
echo "<meta http-equiv='Content-Type' content='text/html; charset=UTF-8'>\n";
$id = $_GET["id"];
$query = "SELECT * FROM `rental_clients` WHERE `id` = '$id' LIMIT 1";
$result = mysql_query($query);
while ($row = mysql_fetch_assoc($result)) {
$qid = $row["id"];
$first_name = $row["first_name"];
$last_name = $row["last_name"];
$company = $row["company"];
$document_no = $row["document_no"];
$street = $row["street"];
$zip = $row["zip"];
$city = $row["city"];
$phone = $row["phone"];
$email = $row["email"];
$nip = $row["nip"];
echo "\t</head>\n";
echo "\t<body>\n";
echo "<script type=\"text/javascript\" language=\"JavaScript\" src=\"inc/overlib.js\"></script>\n";
echo "<div class=\"mainmargin\">\n";
echo "<form name=\"addservice\" id=\"addservice\" method=\"POST\" action=\"editrentalclient_f.php\">\n";
echo "<input type=\"submit\" class=\"hiddenbtn\">\n";
echo "<input type=\"hidden\" name=\"qid\" value=\"".$qid."\">\n";
echo "<table cellpadding=\"4\" cellspacing=\"0\" width=\"100%\">\n";
echo "<tr class=\"dark\">\n";
echo "<td class=\"fall\" width=\"100%\">\n";
echo "Edytuj klienta\n";
echo "</td>\n";
echo "</tr>\n";
echo "<tr class=\"light\">\n";
echo "<td width=\"100%\" class=\"fbottomu\" align=\"right\">\n";
echo "<table width=\"100%\" border=\"0\">\n";
echo "<tr>\n";
echo "<td>Firma </td>\n";
echo "<td><input type=\"text\" name=\"company\" value=\"".$company."\"></td>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "<td>Email </td>\n";
echo "<td><input type=\"text\" name=\"email\" value=\"".$email."\"></td>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "<td>Numer dokumentu: </td>\n";
echo "<td><input type=\"text\" name=\"document_no\" value=\"".$document_no."\"></td>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "<td>Adres: </td>\n";
echo "<td><input type=\"text\" name=\"addr\" value=\"".$street."\"></td>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "<td>Kod pocztowy: </td>\n";
echo "<td><input type=\"text\" name=\"zip\" value=\"".$zip."\"></td>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "<td>Miasto: </td>\n";
echo "<td><input type=\"text\" name=\"city\" value=\"".$city."\"></td>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "<td>Telefon: </td>\n";
echo "<td><input type=\"text\" name=\"phone\" value=\"".$phone."\"></td>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "<td>Nip: </td>\n";
echo "<td><input type=\"text\" name=\"nip\" value=\"".$nip."\"></td>\n";
echo "</tr>\n";
echo "</table>\n";
echo "<a href=\"javascript:document.addservice.submit();\" accesskey=\"S\">Zapisz <img src=\"img/save.gif\"></a>\n";
echo "<a href=\"rentalclientslist.php\"> Anuluj <img src=\"img/cancel.gif\"></a>\n";
echo "<td>\n";
echo "</tr>\n";
echo "</table>\n";
}
echo "</div>\n";
echo "\t</body>\n";
echo "</html>\n";
?>