-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
26 lines (21 loc) · 803 Bytes
/
contact.php
File metadata and controls
26 lines (21 loc) · 803 Bytes
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
<?php
$navbox = FALSE;
require_once './php/essentials.php';
include_once './php/nocache.php';
require_once './php/identify/user.php';
require_once './php/forms/join.php';
$headings = array($user['user_name'], 'Address Book');
$navbox = TRUE;
$urls = array("user.php$unique_id", "contacts.php$unique_id");
require './php/identify/realcontact.php';
$headings[] = html_entity_decode($realcontact['fullname'], ENT_COMPAT, 'UTF-8');
require_once './php/header_one.php';
require_once './php/header_two.php';
?>
<form accept-charset="UTF-8" name="frm_main" method="post" action="action.php" onsubmit="disable()">
<?php
insert_hidden_fields(goto_address("contacts.php$unique_id", array('commission.php', 'find_in.php')));
require './php/forms/contact.php';
?>
</form>
<?php include './php/footer.php';