-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayer.cfm
39 lines (30 loc) · 953 Bytes
/
player.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
<cfinvoke
component="cfc.Players"
method="PlayerbyID"
returnvariable="playerDetail">
<cfinvokeargument name="id" value="#URL.id#"/>
</cfinvoke>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>playingornot.com</title>
<link rel="stylesheet" href="//code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="//code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
</head>
<body>
<div data-role="page" data-theme="e">
<div data-role="header" data-theme="e">
<cfoutput query="playerDetail"><h1>#firstname# #lastname#</h1></cfoutput>
</div><!-- /header -->
<div data-role="content">
<p>
Phone: 000000000<br>
Email: [email protected]
</p>
</div><!-- /content -->
<cfinclude template="includes/footer.cfm">
</div><!-- /page -->
</body>
</html>