-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuyer_info.cfm
86 lines (76 loc) · 2.14 KB
/
buyer_info.cfm
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<cfparam name="xss" default="">
<cfquery name="cats" datasource="#dsource#" dbtype="ODBC" username="#uname#" password="#pword#">
SELECT path FROM products
group by path
order by path
</CFQUERY>
<cfquery name="getPages" datasource="#dsource#" dbtype="ODBC" username="#uname#" password="#pword#">
SELECT * from pages
WHERE pk_pages = 2
</cfquery>
<html>
<head>
<cfoutput>
<title>#companyname# - #titletext#</title>
</cfoutput>
<cfinclude template="meta.cfm">
<cfoutput>
<script language="JavaScript" src="./js/utils.js"></script>
</cfoutput>
<link href="stylesheet.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table id="Table_01" width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2" width="100%" height="125" valign="top" bgcolor="#000000">
<cfinclude template="top.cfm">
</td>
</tr>
<tr>
<td colspan="2" width="100%" valign="top" height="37" bgcolor="#000000">
<cfinclude template="navbar.cfm">
</td>
</tr>
<tr height="100%">
<td valign="top" width="173" height="100%">
<table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">
<tr height="100%">
<td valign="top" height="100%">
<cfinclude template="left.cfm">
</td>
</tr>
</table>
</td>
<td valign="top" width="727" height="100%">
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td align="center" style="padding-top: 10px;">
<strong>BUYER INFORMATION</strong>
</td>
</tr>
<tr>
<td align="center" style="padding-top: 10px;">
<cfoutput>
<table border="0" cellspacing="0" cellpadding="5" width="100%" style="border: 1px solid ##000000;">
<tr>
<td style="padding: 15px;">
#getPages.page_content#
</td>
</tr>
</table>
</cfoutput>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td colspan="2" valign="baseline">
<cfinclude template="footer.cfm">
</td>
</tr>
</table>
<cfinclude template="frmxss.cfm">
</body>
</html>