Advertisement
Aichan

index.php

Jan 6th, 2013
388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.85 KB | None | 0 0
  1. <?php
  2. include 'config.php';
  3. ?>
  4. <html lang="en">
  5. <head>
  6. <meta charset="utf-8">
  7. <title>Aichan's Computercraft webeditor (Based on ACE)</title>
  8.     <style type="text/css" media="screen">
  9.         #editor {
  10.             position: absolute;
  11.             top: 0;
  12.             right: 0;
  13.             bottom: 0;
  14.             left: 0;
  15.         }
  16.     </style>
  17. </head>
  18. <body>
  19.  
  20. <div id="editor"><?php
  21. if(isset($_GET['id']) && isset($_GET['name'])) {
  22.     $path = $base_path . stripShit($_GET['id']) . "/" . stripShit($_GET['name']);
  23.    
  24.     echo file_get_contents($path);
  25. }
  26. ?></div>
  27.    
  28. <script src="http://d1n0x3qji82z53.cloudfront.net/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script>
  29. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js" type="text/javascript" charset="utf-8"></script>
  30. <script src="commands.js" type="text/javascript" charset="utf-8"></script>
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement