pella logo
Temperatur i Norrköping just nu:
Click for Norrköping, Sweden Forecast

Show sourcecode

The following files exists in this folder. Click to view.

public_html/

3kolumn.php
img/
incl/
index.php
login.php
pella1.php
sida1.php
src/
style/
style.php
test.php
viewsource.php

sida1.php

32 lines UTF-8 Windows (CRLF)
<?php include("incl/config.php"); ?>
<?php
    $pageId 
"sida1";
    
$title "Det här är sidan 1";
    
    
/* Här har jag definierat en  style som
    är speciell just för den här sidan*/
    
$pageStyle '
    figure { 
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;

    border-color:#5C0A0A;

    -moz-box-shadow: 10px 10px 5px #8A0F0F;
    -webkit-box-shadow: 10px 10px 5px #8A0F0F;
    box-shadow: 10px 10px 5px #8A0F0F;
 }
 '
/*slut def*/

?>

<?php include("incl/header.php"); ?>

    <h1>Sidan ett</h1>
    <p>Här kommer snart något spännande innehåll.</p>
    <figure><img src="img/pella_bv.jpg" alt="Bild på Pella"><figcaption> HÄr är jag!</figcaption>
    </figure> 
<?php include("incl/byline.php"); ?>
<?php 
include("incl/footer.php"); ?>