Advertisement
ChapDaddy65

gallery.php - Gallery View

Sep 26th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.27 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <title>CodeIgniter</title>
  7.  
  8.     <!-- BootstrapCDN -->
  9.     <link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
  10.     <link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">
  11.     <link href="//netdna.bootstrapcdn.com/bootswatch/3.0.0/spacelab/bootstrap.min.css" rel="stylesheet">
  12.  
  13.     <!-- Google Web Fonts -->
  14.     <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800|Open+Sans+Condensed:300,700' rel='stylesheet' type='text/css'>
  15.  
  16.     <!-- Stylesheet -->
  17.     <link rel="stylesheet" href="<?php echo base_url(); ?>/public_html/css/style.css">
  18. </head>
  19. <body>
  20.  
  21. <div class="container">
  22.    
  23.     <div id="gallery">
  24.  
  25.     </div>
  26.  
  27.     <div id="upload">
  28.        
  29.         <?php
  30.  
  31.             echo form_open_multipart('gallery');
  32.             echo form_upload('userfile');
  33.             echo form_submit('upload', 'Upload');
  34.             echo form_close();
  35.  
  36.         ?>
  37.  
  38.     </div>
  39.  
  40. </div>
  41.    
  42. <!-- jQuery -->
  43. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
  44.  
  45. <!-- BootstrapCDN -->
  46. <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
  47.  
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement