[ create a new paste ] login | about

Link: http://codepad.org/OfSbErVc    [ raw code | output | fork ]

upwhere - PHP, pasted on Jul 9:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

function page_header()
{
    print '<html><head><title>Welcome to my site</title></head>';
    print '<body bgcolor="#ffffff">';
}

page_header();
$user = 'Daryl';
print "Welcome, $user";
page_footer();

function page_footer()
{
    print '<hr>Thanks for visiting.';
    print '</body></html>';
}


Output:
1
<html><head><title>Welcome to my site</title></head><body bgcolor="#ffffff">Welcome, Daryl<hr>Thanks for visiting.</body></html>


Create a new paste based on this one


Comments: