Advertisement
Guest User

PHP problem

a guest
Jul 24th, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.61 KB | None | 0 0
  1. Index.php:
  2.  
  3.     <?php    
  4.         $pageTitle = "Kyle Culp";
  5.         echo "$css[0];
  6.        include('php/header.php');
  7.    ?>
  8.  
  9.  
  10. header.php:
  11.  
  12. <!DOCTYPE html>
  13. <html lang="en">
  14. <head>
  15.    <meta charset="utf-8" />
  16.    <meta name="viewport" content="width=device-width, initial-scale=1">
  17.    <title><?php echo $pageTitle; ?></title>
  18.    <meta name="description" content="An average website I guess." />
  19.    <link href="css/styles.css" rel="stylesheet" type="text/css" />
  20.    <link href="css/<?php $css=array("index.css","portfolio.css","projects.css","contact.css"); ?>" type="text/css" />
  21. </head>
  22. <body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement