Are you a regular stikked user? Signup so you can keep track of your pastes!

Untitled

By Ungracious Mockingbird, 1 Year ago, written in PHP.
URL http://stikked.com/view/10109902
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
  6. <title><?php echo (isset($title)) ? $title : ''; ?></title>
  7. <link rel="stylesheet" href="<?php echo (isset($domain)) ? $domain : ''; ?>includes/style.css" type="text/css" />
  8. </head>
  9. <body>
  10. <?php
  11. if( isset($views) && is_array($views) )
  12. {
  13.         foreach( $views as $view )
  14.         {
  15.                 if( is_array($view) )
  16.                 {
  17.                         $this->load->view( $view[0], $view[1] );
  18.                 }
  19.                 else
  20.                 {
  21.                         $this->load->view( $view );
  22.                 }
  23.         }
  24. }
  25. ?>
  26. </body>
  27. </html>

Reply to "Untitled"

Here you can reply to the paste above

Create a snipurl

Make Private

Feeling clever? Set some advanced options.