| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>短信内容详情</title>
- </head>
- <body>
- <div class="message-container">
- <div class="message-details">
- 当前接收号码:(+1)628 888 3915【仅展示最新5条短信】
- <?php
- foreach ($this->result as $item) {
- ?>
- <div style="text-align:left;border-bottom:2px solid #fff;padding:5px;margin-top:20px">
- <div class="title">
- <span style="padding:2px;display:inline-block;height:20px;line-height:18px;background:#449d44;color:#fff;border-radius:5px;text-align:center">
- <?php echo $item['date']; ?></span>
- <span style="padding:2px;display:inline-block;height:20px;line-height:18px;background:#fe4365;color:#fff;border-radius:5px;text-align:center">
- <span>来自:</span><span><?php echo $item['fromName']; ?></span>
- </span>
- </div>
- <div class="conters">
- 短信内容:
- <span style="margin-top:5px;padding:5px;display:inline-block;background:#3fb8af;color:#fff;border-radius:5px;text-align:left">
- <?php echo $item['content']; ?>
- </span>
- </div>
- </div>
- <hr>
- <?php
- }
- ?>
- </div>
- </div>
- </body>
- </html>
|