forked from pus2inbo2ts/mmubee-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutMe.php
executable file
·92 lines (75 loc) · 1.54 KB
/
aboutMe.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
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
87
88
89
90
91
92
<?php
include 'config.php';
$html = '<style type="text/css">.item-body h2{ margin-top: 0px; margin-bottom: 7px; } .card .item{ min-height:0; }
table{
margin:0 auto;
text-align:center;
width: 200px;
border-collapse: collapse;
text-align: left;
}
th{
font-size: 14px;
font-weight: normal;
padding: 10px 8px;
border:1px solid #d0dbfd;
border-bottom: 2px solid #6678b1;
}
td{
border-bottom: 1px solid #EFF3FD;
padding: 13px 13px;
}
</style>';
$html .= <<<html
<div class="card" style="margin-top:20px;">
<div class="item item-text-wrap item-body">
<div class="logo" style="margin-top:0px;"></div>
<table>
<tr>
<td width="80">I'm</td>
<td>MMUbee</td>
</tr>
<tr>
<td>Age</td>
<td>2.2.0</td>
</tr>
<tr>
<td>Platform</td>
<td>iOS, Android</td>
</tr>
<tr>
<td>Device</td>
<td>Phone, Pad</td>
</tr>
<tr>
<td>Father</td>
<td>Zhang Hang</td>
</tr>
<tr>
<td>Mother</td>
<td>Ma Guojiao</td>
</tr>
<tr>
<td>Uncle</td>
<td>Zhang Qi</td>
</tr>
<tr>
<td>Contact</td>
<td><a href="mailto:[email protected]">[email protected]</a></td>
</tr>
<tr>
<td>Facebook</td>
<td><a href="https://www.facebook.com/zh.MMUbee">MMUbee</a></td>
</tr>
<tr>
<td>Web</td>
<td><a href="http://zh.my/">zh.my</a></td>
</tr>
</table>
<br /><br />
</div>
</div>
<br /><br />
html;
echo json_encode(array('html'=>$html));
?>