-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathXml.class.php
37 lines (30 loc) · 1.25 KB
/
Xml.class.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Relatório</title>
</head>
<body>
<?php
$xml = "relatorio.xml";
$rel = simplexml_load_file($xml);
?>
<table width="100%" border="1" align="center" cellpadding="1" cellspacing="1" style="font-size:14px">
<tr>
<td width="16%" align="center" bgcolor="#CCCCCC"><strong>Endereço</strong></td>
<td width="15%" align="center" bgcolor="#CCCCCC"><strong>Cnpj</strong></td>
<td width="4%" align="center" bgcolor="#CCCCCC"><strong>Matricula</strong></td>
<td width="9%" align="center" bgcolor="#CCCCCC"><strong>Nome</strong></td>
<td width="10%" align="center" bgcolor="#CCCCCC"><strong>Cidade</strong></td>
<td width="4%" align="center" bgcolor="#CCCCCC"><strong>Uf</strong></td>
<td width="6%" align="center" bgcolor="#CCCCCC"><strong>Cep</strong></td>
<td width="13%" align="center" bgcolor="#CCCCCC"><strong>E-mail</strong></td>
<td width="19%" align="center" bgcolor="#CCCCCC"><strong>Telefone</strong></td>
<td width="4%" align="center" bgcolor="#CCCCCC"><strong>Contato</strong></td>
</tr>
<tr>
<?php
?>
</table>
</body>
</html>