中国专业的PHP网站内容管理系统-织梦内容管理系统
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. {dede:include file='header.htm'/}
  2. <div class="wrapper mT10">
  3. <div class="west">
  4. {dede:include file='side_icon.htm'/}
  5. </div>
  6. <div class="east">
  7. <dl class="border">
  8. <dt class="caption"><strong>基本资料</strong></dt>
  9. <dd class="body pB10">
  10. <table width="700" align="center" class="tList">
  11. <tr>
  12. <td>昵称:</td>
  13. <td><?php echo $row['uname']; ?></td>
  14. </tr>
  15. <tr>
  16. <td width="101">性别: </td>
  17. <td width="593"><?php echo $row['sex']; ?></td>
  18. </tr>
  19. <tr>
  20. <td>目前所在地:</td>
  21. <td> 省份:
  22. <?php
  23. $places = GetEnumsTypes($row['place']);
  24. echo ( isset($em_nativeplaces[$places['top']]) ? $em_nativeplaces[$places['top']] : '');
  25. ?>
  26. &nbsp; 城市:
  27. <?php
  28. echo ( isset($em_nativeplaces[$places['son']]) ? $em_nativeplaces[$places['son']] : '');
  29. ?></td>
  30. </tr>
  31. <tr>
  32. <td>家乡所在地:</td>
  33. <td> 省份:
  34. <?php
  35. $places = GetEnumsTypes($row['oldplace']);
  36. echo ( isset($em_nativeplaces[$places['top']]) ? $em_nativeplaces[$places['top']] : '');
  37. ?>
  38. &nbsp; 城市:
  39. <?php
  40. echo ( isset($em_nativeplaces[$places['son']]) ? $em_nativeplaces[$places['son']] : '');
  41. ?></td>
  42. </tr>
  43. <tr>
  44. <td>出生日期:</td>
  45. <td><?php echo $row['birthday']; ?></td>
  46. </tr>
  47. <tr>
  48. <td>交友目的:</td>
  49. <td><?php echo GetEnumsValue('datingtype',$row['datingtype']); ?></td>
  50. </tr>
  51. <tr>
  52. <td>婚姻状况:</td>
  53. <td><?php echo GetEnumsValue('marital',$row['marital']); ?></td>
  54. </tr>
  55. <tr>
  56. <td>星座:</td>
  57. <td><?php echo GetEnumsValue('star',$row['star']); ?></td>
  58. </tr>
  59. <tr>
  60. <td>血型:</td>
  61. <td><?php echo GetEnumsValue('blood',$row['blood']); ?></td>
  62. </tr>
  63. <tr>
  64. <td>身高:</td>
  65. <td>><?php echo $row['height']; ?> 厘米</td>
  66. </tr>
  67. <tr>
  68. <td>体型:</td>
  69. <td><?php echo GetEnumsValue('bodytype',$row['bodytype']); ?></td>
  70. </tr>
  71. </table>
  72. </dd>
  73. </dl>
  74. <dl class="border mT10">
  75. <dt class="caption"><strong>经济状况</strong></dt>
  76. <dd class="body pB10">
  77. <table width="700" align="center" class="tList">
  78. <tr>
  79. <td width="101">收入情况:</td>
  80. <td width="593"><?php echo GetEnumsValue('income',$row['income']); ?></td>
  81. </tr>
  82. <tr>
  83. <td>教育程度:</td>
  84. <td><?php echo GetEnumsValue('education',$row['education']); ?></td>
  85. </tr>
  86. <tr>
  87. <td>住房情况:</td>
  88. <td><?php echo GetEnumsValue('house',$row['house']); ?></td>
  89. </tr>
  90. <tr>
  91. <td>所属行业:</td>
  92. <td><?php echo GetEnumsValue('vocation',$row['vocation']); ?></td>
  93. </tr>
  94. <tr>
  95. <td>掌握语言:</td>
  96. <td>
  97. <?php
  98. $arr = $dsql->GetOne("Select * From `#@__sys_set` where sname='language' ");
  99. $sets = explode(',',$arr['items']);
  100. foreach($sets as $v){
  101. if(preg_match("#".$v."#", $row['language'])) echo " $v ";
  102. }
  103. ?></td>
  104. </tr>
  105. </table>
  106. </dd>
  107. </dl>
  108. <dl class="border mT10">
  109. <dt class="caption"><strong>兴趣爱好</strong></dt>
  110. <dd class="body pB10">
  111. <table width="700" align="center" class="tList">
  112. <tr>
  113. <td width="101">是否喝酒:</td>
  114. <td width="593"><?php echo GetEnumsValue('drink',$row['drink']); ?></td>
  115. </tr>
  116. <tr>
  117. <td>是否抽烟:</td>
  118. <td><?php echo GetEnumsValue('smoke',$row['smoke']); ?></td>
  119. </tr>
  120. <tr>
  121. <td>兴趣爱好:</td>
  122. <td> <?php
  123. $arr = $dsql->GetOne("Select * From `#@__sys_set` where sname='nature' ");
  124. $sets = explode(',',$arr['items']);
  125. foreach($sets as $v){
  126. if(preg_match("#".$v."#",$row['nature'])) echo " $v ";
  127. }
  128. ?></td>
  129. </tr>
  130. </table>
  131. </dd>
  132. </dl>
  133. </div>
  134. </div>
  135. {dede:include file='footer.htm'/}
  136. </body>
  137. </html>