01.
<?php
require_once
(
'Connections/webb.php'
); ?>
02.
<?php
03.
04.
require_once
(
'includes/mxi/MXI.php'
);
05.
06.
mysql_select_db(
$database_webb
,
$webb
);
07.
$query_tities
=
"SELECT office_name FROM office_name"
;
08.
$tities
= mysql_query(
$query_tities
,
$webb
)
or
die
(mysql_error());
09.
$row_tities
= mysql_fetch_assoc(
$tities
);
10.
$totalRows_tities
= mysql_num_rows(
$tities
);
13.
<head>
14.
15.
<meta http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
16.
<link rel=
"stylesheet"
type=
"text/css"
href=
"css.css"
>
17.
<title>:: <?php
echo
$row_tities
[
'office_name'
]; ?> ::</title>
18.
<style type=
"text/css"
>
19.
20.
<!--
21.
body {
22.
margin-left: 0px;
23.
margin-top: 0px;
24.
margin-right: 0px;
25.
margin-bottom: 0px;
26.
}
27.
-->
28.
</style></head>
29.
30.
<body>
31.
32.
33.
34.
35.
<table width=
"100%"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
>
36.
<tr>
37.
<td width=
"12%"
> </td>
38.
<td width=
"88%"
><table width=
"75%"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
>
39.
<tr>
40.
<td colspan=
"3"
valign=
"top"
><?php
41.
mxi_includes_start(
"header.php"
);
42.
require
(
basename
(
"header.php"
));
43.
mxi_includes_end();
44.
?></td>
45.
</tr>
46.
<tr>
47.
<td width=
"17%"
valign=
"top"
><?php
48.
mxi_includes_start(
"menu.php"
);
49.
require
(
basename
(
"menu.php"
));
50.
mxi_includes_end();
51.
?></td>
52.
<td width=
"71%"
valign=
"top"
><table width=
"100%"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
>
53.
<tr>
54.
<td width=
"2%"
valign=
"top"
> </td>
55.
<td width=
"98%"
valign=
"top"
><?
56.
if
(
$links
!=
""
)
57.
{
58.
include
(
$links
);
59.
}
else
60.
{
61.
include
(
"body.php"
);
62.
}
63.
?></td>
64.
</tr>
65.
</table></td>
66.
<td width=
"12%"
valign=
"top"
><?php
67.
mxi_includes_start(
"picmenu.php"
);
68.
require
(
basename
(
"picmenu.php"
));
69.
mxi_includes_end();
70.
?></td>
71.
</tr>
72.
<tr>
73.
<td colspan=
"3"
valign=
"top"
><?php
74.
mxi_includes_start(
"footer.php"
);
75.
require
(
basename
(
"footer.php"
));
76.
mxi_includes_end();
77.
?></td>
78.
</tr>
79.
</table></td>
80.
</tr>
81.
</table>
82.
</body>
83.
</html>
84.
85.
86.
87.
<?php
88.
mysql_free_result(
$tities
);
89.
?>