A PHP Error was encountered

Severity: 8192

Message: Function create_function() is deprecated

Filename: geshi/geshi.php

Line Number: 4698

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4698
Function: _error_handler

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4621
Function: _optimize_regexp_list_tokens_to_string

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 1655
Function: optimize_regexp_list

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2029
Function: optimize_keyword_group

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2168
Function: build_parse_cache

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/Process.php
Line: 45
Function: parse_code

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/models/Pastes.php
Line: 517
Function: syntax

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 693
Function: getPaste

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once

Re: Testing - Stikked
From JOni, 6 Years ago, written in HTML5.
This paste is a reply to Testing from JOni - view diff
Embed
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.   <title>Bootstrap Example2</title>
  4.   <meta charset="utf-8">
  5.   <meta name="viewport" content="width=device-width, initial-scale=1">
  6.   <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  7.   <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  8.   <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  9. </head>
  10.  
  11. <div class="container">
  12.   <h2>Basic Table</h2>
  13.   <p>The .table class adds basic styling (light padding and only horizontal dividers) to a table:</p>            
  14.   <table class="table">
  15.     <thead>
  16.       <tr>
  17.         <th>Firstname</th>
  18.         <th>Lastname</th>
  19.         <th>Email</th>
  20.       </tr>
  21.     </thead>
  22.     <tbody>
  23.       <tr>
  24.         <td>John</td>
  25.         <td>Doe</td>
  26.         <td>john@example.com</td>
  27.       </tr>
  28.       <tr>
  29.         <td>Mary</td>
  30.         <td>Moe</td>
  31.         <td>mary@example.com</td>
  32.       </tr>
  33.       <tr>
  34.         <td>July</td>
  35.         <td>Dooley</td>
  36.         <td>july@example.com</td>
  37.       </tr>
  38.     </tbody>
  39.   </table>
  40. </div>
  41.  
  42. </body>
  43. </html>