forked from webERP-team/webERP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CompanyPreferences.php
471 lines (378 loc) · 20.3 KB
/
CompanyPreferences.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
<?php
// CompanyPreferences.php
// Defines the settings applicable for the company, including name, address, tax authority reference, whether GL integration used etc.
include('includes/session.php');
$ViewTopic= 'CreatingNewSystem';
$BookMark = 'CompanyParameters';
$Title = _('Company Preferences');
include('includes/header.php');
if (isset($Errors)) {
unset($Errors);
}
//initialise no input errors assumed initially before we test
$InputError = 0;
$Errors = array();
$i=1;
if (isset($_POST['submit'])) {
/* actions to take once the user has clicked the submit button
ie the page has called itself with some user input */
//first off validate inputs sensible
if (mb_strlen($_POST['CoyName']) > 50 OR mb_strlen($_POST['CoyName'])==0) {
$InputError = 1;
prnMsg(_('The company name must be entered and be fifty characters or less long'), 'error');
$Errors[$i] = 'CoyName';
$i++;
}
if (mb_strlen($_POST['Email'])>0 and !IsEmailAddress($_POST['Email'])) {
$InputError = 1;
prnMsg(_('The email address is not correctly formed'),'error');
$Errors[$i] = 'Email';
$i++;
}
if ($InputError !=1){
$sql = "UPDATE companies SET coyname='" . $_POST['CoyName'] . "',
companynumber = '" . $_POST['CompanyNumber'] . "',
gstno='" . $_POST['GSTNo'] . "',
regoffice1='" . $_POST['RegOffice1'] . "',
regoffice2='" . $_POST['RegOffice2'] . "',
regoffice3='" . $_POST['RegOffice3'] . "',
regoffice4='" . $_POST['RegOffice4'] . "',
regoffice5='" . $_POST['RegOffice5'] . "',
regoffice6='" . $_POST['RegOffice6'] . "',
telephone='" . $_POST['Telephone'] . "',
fax='" . $_POST['Fax'] . "',
email='" . $_POST['Email'] . "',
currencydefault='" . $_POST['CurrencyDefault'] . "',
debtorsact='" . $_POST['DebtorsAct'] . "',
pytdiscountact='" . $_POST['PytDiscountAct'] . "',
creditorsact='" . $_POST['CreditorsAct'] . "',
payrollact='" . $_POST['PayrollAct'] . "',
grnact='" . $_POST['GRNAct'] . "',
exchangediffact='" . $_POST['ExchangeDiffAct'] . "',
purchasesexchangediffact='" . $_POST['PurchasesExchangeDiffAct'] . "',
retainedearnings='" . $_POST['RetainedEarnings'] . "',
gllink_debtors='" . $_POST['GLLink_Debtors'] . "',
gllink_creditors='" . $_POST['GLLink_Creditors'] . "',
gllink_stock='" . $_POST['GLLink_Stock'] ."',
freightact='" . $_POST['FreightAct'] . "'
WHERE coycode=1";
$ErrMsg = _('The company preferences could not be updated because');
$result = DB_query($sql,$ErrMsg);
prnMsg( _('Company preferences updated'),'success');
/* Alter the exchange rates in the currencies table */
/* Get default currency rate */
$sql="SELECT rate from currencies WHERE currabrev='" . $_POST['CurrencyDefault'] . "'";
$result = DB_query($sql);
$myrow = DB_fetch_row($result);
$NewCurrencyRate=$myrow[0];
/* Set new rates */
$sql="UPDATE currencies SET rate=rate/" . $NewCurrencyRate;
$ErrMsg = _('Could not update the currency rates');
$result = DB_query($sql,$ErrMsg);
/* End of update currencies */
$ForceConfigReload = True; // Required to force a load even if stored in the session vars
include('includes/GetConfig.php');
$ForceConfigReload = False;
} else {
prnMsg( _('Validation failed') . ', ' . _('no updates or deletes took place'),'warn');
}
} /* end of if submit */
echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/maintenance.png" title="' . _('Search') .
'" alt="" />' . ' ' . $Title . '</p>';
echo '<form method="post" action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '">';
echo '<div>';
echo '<input type="hidden" name="FormID" value="' . $_SESSION['FormID'] . '" />';
echo '<table class="selection">';
if ($InputError != 1) {
$sql = "SELECT coyname,
gstno,
companynumber,
regoffice1,
regoffice2,
regoffice3,
regoffice4,
regoffice5,
regoffice6,
telephone,
fax,
email,
currencydefault,
debtorsact,
pytdiscountact,
creditorsact,
payrollact,
grnact,
exchangediffact,
purchasesexchangediffact,
retainedearnings,
gllink_debtors,
gllink_creditors,
gllink_stock,
freightact
FROM companies
WHERE coycode=1";
$ErrMsg = _('The company preferences could not be retrieved because');
$result = DB_query($sql,$ErrMsg);
$myrow = DB_fetch_array($result);
$_POST['CoyName'] = $myrow['coyname'];
$_POST['GSTNo'] = $myrow['gstno'];
$_POST['CompanyNumber'] = $myrow['companynumber'];
$_POST['RegOffice1'] = $myrow['regoffice1'];
$_POST['RegOffice2'] = $myrow['regoffice2'];
$_POST['RegOffice3'] = $myrow['regoffice3'];
$_POST['RegOffice4'] = $myrow['regoffice4'];
$_POST['RegOffice5'] = $myrow['regoffice5'];
$_POST['RegOffice6'] = $myrow['regoffice6'];
$_POST['Telephone'] = $myrow['telephone'];
$_POST['Fax'] = $myrow['fax'];
$_POST['Email'] = $myrow['email'];
$_POST['CurrencyDefault'] = $myrow['currencydefault'];
$_POST['DebtorsAct'] = $myrow['debtorsact'];
$_POST['PytDiscountAct'] = $myrow['pytdiscountact'];
$_POST['CreditorsAct'] = $myrow['creditorsact'];
$_POST['PayrollAct'] = $myrow['payrollact'];
$_POST['GRNAct'] = $myrow['grnact'];
$_POST['ExchangeDiffAct'] = $myrow['exchangediffact'];
$_POST['PurchasesExchangeDiffAct'] = $myrow['purchasesexchangediffact'];
$_POST['RetainedEarnings'] = $myrow['retainedearnings'];
$_POST['GLLink_Debtors'] = $myrow['gllink_debtors'];
$_POST['GLLink_Creditors'] = $myrow['gllink_creditors'];
$_POST['GLLink_Stock'] = $myrow['gllink_stock'];
$_POST['FreightAct'] = $myrow['freightact'];
}
echo '<tr>
<td>' . _('Name') . ' (' . _('to appear on reports') . '):</td>
<td><input '.(in_array('CoyName',$Errors) ? 'class="inputerror"' : '' ) .' tabindex="1" type="text" autofocus="autofocus" required="required" name="CoyName" value="' . stripslashes($_POST['CoyName']) . '" pattern="?!^ +$" title="' . _('Enter the name of the business. This will appear on all reports and at the top of each screen. ') . '" size="52" maxlength="50" /></td>
</tr>';
echo '<tr>
<td>' . _('Official Company Number') . ':</td>
<td><input '.(in_array('CoyNumber',$Errors) ? 'class="inputerror"' : '' ) .' tabindex="2" type="text" name="CompanyNumber" value="' . $_POST['CompanyNumber'] . '" size="22" maxlength="20" /></td>
</tr>';
echo '<tr>
<td>' . _('Tax Authority Reference') . ':</td>
<td><input '.(in_array('TaxRef',$Errors) ? 'class="inputerror"' : '' ) .' tabindex="3" type="text" name="GSTNo" value="' . $_POST['GSTNo'] . '" size="22" maxlength="20" /></td>
</tr>';
echo '<tr>
<td>' . _('Address Line 1') . ':</td>
<td><input '.(in_array('RegOffice1',$Errors) ? 'class="inputerror"' : '' ) .' tabindex="4" type="text" name="RegOffice1" title="' . _('Enter the first line of the company registered office. This will appear on invoices and statements.') . '" required="required" size="42" maxlength="40" value="' . stripslashes($_POST['RegOffice1']) . '" /></td>
</tr>';
echo '<tr>
<td>' . _('Address Line 2') . ':</td>
<td><input '.(in_array('RegOffice2',$Errors) ? 'class="inputerror"' : '' ) .' tabindex="5" type="text" name="RegOffice2" title="' . _('Enter the second line of the company registered office. This will appear on invoices and statements.') . '" size="42" maxlength="40" value="' . stripslashes($_POST['RegOffice2']) . '" /></td>
</tr>';
echo '<tr>
<td>' . _('Address Line 3') . ':</td>
<td><input '.(in_array('RegOffice3',$Errors) ? 'class="inputerror"' : '' ) .' tabindex="6" type="text" name="RegOffice3" title="' . _('Enter the third line of the company registered office. This will appear on invoices and statements.') . '" size="42" maxlength="40" value="' . stripslashes($_POST['RegOffice3']) . '" /></td>
</tr>';
echo '<tr>
<td>' . _('Address Line 4') . ':</td>
<td><input '.(in_array('RegOffice4',$Errors) ? 'class="inputerror"' : '' ) .' tabindex="7" type="text" name="RegOffice4" title="' . _('Enter the fourth line of the company registered office. This will appear on invoices and statements.') . '" size="42" maxlength="40" value="' . stripslashes($_POST['RegOffice4']) . '" /></td>
</tr>';
echo '<tr>
<td>' . _('Address Line 5') . ':</td>
<td><input '.(in_array('RegOffice5',$Errors) ? 'class="inputerror"' : '' ) .' tabindex="8" type="text" name="RegOffice5" size="22" maxlength="20" value="' . stripslashes($_POST['RegOffice5']) . '" /></td>
</tr>';
echo '<tr>
<td>' . _('Address Line 6') . ':</td>
<td><input '.(in_array('RegOffice6',$Errors) ? 'class="inputerror"' : '' ) .' tabindex="9" type="text" name="RegOffice6" size="17" maxlength="15" value="' . stripslashes($_POST['RegOffice6']) . '" /></td>
</tr>';
echo '<tr>
<td>' . _('Telephone Number') . ':</td>
<td><input ', (in_array('Telephone',$Errors) ? 'class="inputerror"' : '' ), ' maxlength="25" name="Telephone" required="required" size="26" tabindex="10" type="tel" title="', _('Enter the main telephone number of the company registered office. This will appear on invoices and statements.'), '" value="', $_POST['Telephone'], '" /></td>
</tr>';
echo '<tr>
<td>' . _('Facsimile Number') . ':</td>
<td><input ', (in_array('Fax',$Errors) ? 'class="inputerror"' : '' ), ' maxlength="25" name="Fax" size="26" tabindex="11" type="tel" value="', $_POST['Fax'], '" /></td>
</tr>';
echo '<tr>
<td>' . _('Email Address') . ':</td>
<td><input '.(in_array('Email',$Errors) ? 'class="inputerror"' : '' ) .' tabindex="12" type="email" name="Email" title="' . _('Enter the main company email address. This will appear on invoices and statements.') . '" required="required" placeholder="[email protected]" size="50" maxlength="55" value="' . $_POST['Email'] . '" /></td>
</tr>';
$result=DB_query("SELECT currabrev, currency FROM currencies");
include('includes/CurrenciesArray.php'); // To get the currency name from the currency code.
echo '<tr>
<td><label for="CurrencyDefault">', _('Home Currency'), ':</label></td>
<td><select id="CurrencyDefault" name="CurrencyDefault" tabindex="13" >';
while ($myrow = DB_fetch_array($result)) {
if ($_POST['CurrencyDefault']==$myrow['currabrev']){
echo '<option selected="selected" value="'. $myrow['currabrev'] . '">' . $CurrencyName[$myrow['currabrev']] . '</option>';
} else {
echo '<option value="' . $myrow['currabrev'] . '">' . $CurrencyName[$myrow['currabrev']] . '</option>';
}
} //end while loop
DB_free_result($result);
echo '</select></td>
</tr>';
$result=DB_query("SELECT accountcode,
accountname
FROM chartmaster INNER JOIN accountgroups
ON chartmaster.group_=accountgroups.groupname
WHERE accountgroups.pandl=0
ORDER BY chartmaster.accountcode");
echo '<tr>
<td>' . _('Debtors Control GL Account') . ':</td>
<td><select tabindex="14" title="' . _('Select the general ledger account to be used for posting the local currency value of all customer transactions to. This account will always represent the total amount owed by customers to the business. Only balance sheet accounts are available for this selection.') . '" name="DebtorsAct">';
while ($myrow = DB_fetch_row($result)) {
if ($_POST['DebtorsAct']==$myrow[0]){
echo '<option selected="selected" value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
} else {
echo '<option value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
}
} //end while loop
DB_data_seek($result,0);
echo '</select></td>
</tr>';
echo '<tr>
<td>' . _('Creditors Control GL Account') . ':</td>
<td><select tabindex="15" title="' . _('Select the general ledger account to be used for posting the local currency value of all supplier transactions to. This account will always represent the total amount owed by the business to suppliers. Only balance sheet accounts are available for this selection.') . '" name="CreditorsAct">';
while ($myrow = DB_fetch_row($result)) {
if ($_POST['CreditorsAct']==$myrow[0]){
echo '<option selected="selected" value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
} else {
echo '<option value="' . $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
}
} //end while loop
DB_data_seek($result,0);
echo '</select></td>
</tr>';
echo '<tr>
<td>' . _('Payroll Net Pay Clearing GL Account') . ':</td>
<td><select tabindex="16" name="PayrollAct">';
while ($myrow = DB_fetch_row($result)) {
if ($_POST['PayrollAct']==$myrow[0]){
echo '<option selected="selected" value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
} else {
echo '<option value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
}
} //end while loop
DB_data_seek($result,0);
echo '</select></td>
</tr>';
echo '<tr>
<td>' . _('Goods Received Clearing GL Account') . ':</td>
<td><select title="' . _('Select the general ledger account to be used for posting the cost of goods received pending the entry of supplier invoices for the goods. This account will represent the value of goods received yet to be invoiced by suppliers. Only balance sheet accounts are available for this selection.') . '" tabindex="17" name="GRNAct">';
while ($myrow = DB_fetch_row($result)) {
if ($_POST['GRNAct']==$myrow[0]){
echo '<option selected="selected" value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
} else {
echo '<option value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
}
} //end while loop
DB_data_seek($result,0);
echo '</select></td>
</tr>';
echo '<tr>
<td>' . _('Retained Earning Clearing GL Account') . ':</td>
<td><select title="' . _('Select the general ledger account to be used for clearing profit and loss accounts to that represents the accumulated retained profits of the business. Only balance sheet accounts are available for this selection.') . '" tabindex="18" name="RetainedEarnings">';
while ($myrow = DB_fetch_row($result)) {
if ($_POST['RetainedEarnings']==$myrow[0]){
echo '<option selected="selected" value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
} else {
echo '<option value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
}
} //end while loop
DB_free_result($result);
echo '</select></td>
</tr>';
echo '<tr>
<td>' . _('Freight Re-charged GL Account') . ':</td>
<td><select tabindex="19" name="FreightAct">';
$result=DB_query("SELECT accountcode,
accountname
FROM chartmaster INNER JOIN accountgroups
ON chartmaster.group_=accountgroups.groupname
WHERE accountgroups.pandl=1
ORDER BY chartmaster.accountcode");
while ($myrow = DB_fetch_row($result)) {
if ($_POST['FreightAct']==$myrow[0]){
echo '<option selected="selected" value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
} else {
echo '<option value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
}
} //end while loop
DB_data_seek($result,0);
echo '</select></td>
</tr>';
echo '<tr>
<td>' . _('Sales Exchange Variances GL Account') . ':</td>
<td><select title="' . _('Select the general ledger account to be used for posting accounts receivable exchange rate differences to - where the exchange rate on sales invocies is different to the exchange rate of currency receipts from customers, the exchange rate is calculated automatically and posted to this general ledger account. Only profit and loss general ledger accounts are available for this selection.') . '" tabindex="20" name="ExchangeDiffAct">';
while ($myrow = DB_fetch_row($result)) {
if ($_POST['ExchangeDiffAct']==$myrow[0]){
echo '<option selected="selected" value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
} else {
echo '<option value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
}
} //end while loop
DB_data_seek($result,0);
echo '</select></td>
</tr>';
echo '<tr>
<td>' . _('Purchases Exchange Variances GL Account') . ':</td>
<td><select tabindex="21" title="' . _('Select the general ledger account to be used for posting the exchange differences on the accounts payable transactions to. Supplier invoices entered at one currency and paid in the supplier currency at a different exchange rate have the differences calculated automatically and posted to this general ledger account. Only profit and loss general ledger accounts are available for this selection.') . '" name="PurchasesExchangeDiffAct">';
while ($myrow = DB_fetch_row($result)) {
if ($_POST['PurchasesExchangeDiffAct']==$myrow[0]){
echo '<option selected="selected" value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
} else {
echo '<option value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
}
} //end while loop
DB_data_seek($result,0);
echo '</select></td>
</tr>';
echo '<tr>
<td>' . _('Payment Discount GL Account') . ':</td>
<td><select title="' . _('Select the general ledger account to be used for posting the value of payment discounts given to customers at the time of entering a receipt. Only profit and loss general ledger accounts are available for this selection.') . '" tabindex="22" name="PytDiscountAct">';
while ($myrow = DB_fetch_row($result)) {
if ($_POST['PytDiscountAct']==$myrow[0]){
echo '<option selected="selected" value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
} else {
echo '<option value="'. $myrow[0] . '">' . htmlspecialchars($myrow[1],ENT_QUOTES,'UTF-8') . ' ('.$myrow[0].')</option>';
}
} //end while loop
DB_data_seek($result,0);
echo '</select></td>
</tr>';
echo '<tr>
<td>' . _('Create GL entries for accounts receivable transactions') . ':</td>
<td><select title="' . _('Select yes to ensure that webERP creates general ledger journals for all accounts receivable transactions. webERP will maintain the debtors control account (selected above) to ensure it should always balance to the list of customer balances in local currency.') . '" tabindex="23" name="GLLink_Debtors">';
if ($_POST['GLLink_Debtors']==0){
echo '<option selected="selected" value="0">' . _('No') . '</option>';
echo '<option value="1">' . _('Yes'). '</option>';
} else {
echo '<option selected="selected" value="1">' . _('Yes'). '</option>';
echo '<option value="0">' . _('No'). '</option>';
}
echo '</select></td>
</tr>';
echo '<tr>
<td>' . _('Create GL entries for accounts payable transactions') . ':</td>
<td><select title="' . _('Select yes to ensure that webERP creates general ledger journals for all accounts payable transactions. webERP will maintain the creditors control account (selected above) to ensure it should always balance to the list of supplier balances in local currency.') . '" tabindex="24" name="GLLink_Creditors">';
if ($_POST['GLLink_Creditors']==0){
echo '<option selected="selected" value="0">' . _('No') . '</option>';
echo '<option value="1">' . _('Yes') . '</option>';
} else {
echo '<option selected="selected" value="1">' . _('Yes') . '</option>';
echo '<option value="0">' . _('No') . '</option>';
}
echo '</select></td>
</tr>';
echo '<tr>
<td>' . _('Create GL entries for stock transactions') . ':</td>
<td><select title="' . _('Select yes to ensure that webERP creates general ledger journals for all inventory transactions. webERP will maintain the stock control accounts (selected under the inventory categories set up) to ensure they balance. Only balance sheet general ledger accounts can be selected.') . '" tabindex="25" name="GLLink_Stock">';
if ($_POST['GLLink_Stock']=='0'){
echo '<option selected="selected" value="0">' . _('No') . '</option>';
echo '<option value="1">' . _('Yes') . '</option>';
} else {
echo '<option selected="selected" value="1">' . _('Yes') . '</option>';
echo '<option value="0">' . _('No') . '</option>';
}
echo '</select></td>
</tr>';
echo '</table>
<br />
<div class="centre">
<input tabindex="26" type="submit" name="submit" value="' . _('Update') . '" />
</div>';
echo '</div></form>';
include('includes/footer.php');
?>