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

HTML - Stikked
From Little Penguin, 10 Years ago, written in HTML5.
Embed
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <meta charset="UTF-8">
  4.     <!-- width=device-width indica que queremos que la página tenga el ancho completo de nuestro dispositivo móvil.
  5.  
  6.   initial-scale=1.0 indica que queremos que la página tenga como zoom inicial el original, y no el zoom-out que suele hacer a los sitios comunes.
  7.  
  8.   user-scalable=no indica que el usuario no podrá hacer acercamiento o alejamiento a la página. Esto es para soportar el multi-toque -->
  9.     <meta name="viewport" content="width=device-width, initial-scale=0.60, user-scalable=no" />
  10.    <style>
  11.     body { margin: 0; overflow: hidden; }
  12.    
  13.     </style>
  14.     <title>Juego con HTML5</title>
  15. </head>
  16.    <div style="position: relative;">
  17.     <canvas id='game' width="800" height="400" z-index: 0;></canvas>
  18.     </div>
  19.     <!--Cargar los scripts-->
  20.     <script src="preloadjs-0.1.0.min.js"></script>
  21.     <script src='main.js'></script>
  22. </body>
  23. </html>
  24.