/[projects]/misc/horsensspejder-web/mobile/personer.php
ViewVC logotype

Contents of /misc/horsensspejder-web/mobile/personer.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2184 - (show annotations) (download)
Fri May 30 07:28:28 2014 UTC (9 years, 11 months ago) by torben
File size: 1735 byte(s)
upgrade to jquery mobile 1.4.2
1 <?php
2 require "../inc/mysql.php";
3 header("Content-Type: text/html; charset=iso-8859-1");
4 session_start();
5
6 ?>
7
8 <html>
9 <head>
10
11 <?php
12 include "jquery.html";
13 ?>
14
15 </head>
16
17
18
19
20 <body>
21
22
23 <!-- Home -->
24 <div data-role="page" id="page2">
25 <div data-theme="a" data-role="header">
26 <h3>
27 Horsens Spejder
28 </h3>
29 </div>
30 <div data-role="navbar" data-iconpos="top">
31 <ul>
32 <li>
33 <a href="moedeprotokol.php" data-transition="fade" data-theme="" data-icon="check">
34 M&oslash;de<br>Protokol
35 </a>
36 </li>
37
38 <li>
39 <a href="inbox.php" data-transition="fade" data-theme="" data-icon="grid">
40 Inbox<br>&nbsp;
41 </a>
42 </li>
43 <li>
44 <a href="#page2" data-transition="fade" data-theme="" data-icon="bars"
45 class="ui-btn-active ui-state-persist">
46 Kontakter<br>&nbsp;
47 </a>
48 </li>
49 </ul>
50 </div>
51
52
53 <div data-role="content">
54 <ul data-role="listview" data-filter="true" data-divider-theme="b" data-inset="true">
55 <li data-role="list-divider" role="heading">
56 Kontakter
57 </li>
58
59 <?php
60
61 $rows = cached_query("
62 select id,fornavn,efternavn
63 from stamdata
64 order by fornavn, efternavn
65 ");
66
67 foreach($rows as $row) {
68
69 echo "<li data-theme='c'>\n";
70 echo "<a href='kontaktinfo.php?id={$row->id}' data-rel='dialog'>";
71 echo $row->fornavn . " " . $row->efternavn . "<br>";
72 echo "</a>";
73 echo "</li>\n";
74 }
75
76 ?>
77 </ul>
78 </div>
79
80 </div>
81
82 </body>
83 </html>

  ViewVC Help
Powered by ViewVC 1.1.20