Script to show mockup designs
<?php
extract($_REQUEST);
$phpself = $_SERVER['PHP_SELF'];
print <<<eof
<html>
<head>
<title>Mock Ups</title>
<style type="text/css">
body {
font-family:sans-serif;
}
div.container {
margin:0 0 16px 0; padding:16px;
text-align:left;
background-image:url(http://www.domain.org/images/back.png);
background-repeat:repeat;
border:1px solid #ebebeb;
}
a, a:link {
color:#7d110c;
}
a:hover {
color:navy;
text-decoration:none;
}
h1 {
font-size:175%;
}
</style>
</head>
<body>
<div class="container">
<h1>Your Project Name</h1>
<ol>
<li><a href="{$phpself}?url=http://www.domain.org/page1.html">Design 1</a></li>
<li><a href="{$phpself}?url=http://www.domain.org/page1.html">Design 2</a></li>
<li><a href="{$phpself}?url=http://www.domain.org/page1.html">Design 3</a></li>
</ol>
</div><!--end:class:container-->
eof;
if($url != ''){
print <<<eof
<iframe src="{$url}?style={$style}&short_title={$short_title}" width="100%" height="100%"></iframe>
eof;
}
print <<<eof
</body>
</html>
eof;
?>
extract($_REQUEST);
$phpself = $_SERVER['PHP_SELF'];
print <<<eof
<html>
<head>
<title>Mock Ups</title>
<style type="text/css">
body {
font-family:sans-serif;
}
div.container {
margin:0 0 16px 0; padding:16px;
text-align:left;
background-image:url(http://www.domain.org/images/back.png);
background-repeat:repeat;
border:1px solid #ebebeb;
}
a, a:link {
color:#7d110c;
}
a:hover {
color:navy;
text-decoration:none;
}
h1 {
font-size:175%;
}
</style>
</head>
<body>
<div class="container">
<h1>Your Project Name</h1>
<ol>
<li><a href="{$phpself}?url=http://www.domain.org/page1.html">Design 1</a></li>
<li><a href="{$phpself}?url=http://www.domain.org/page1.html">Design 2</a></li>
<li><a href="{$phpself}?url=http://www.domain.org/page1.html">Design 3</a></li>
</ol>
</div><!--end:class:container-->
eof;
if($url != ''){
print <<<eof
<iframe src="{$url}?style={$style}&short_title={$short_title}" width="100%" height="100%"></iframe>
eof;
}
print <<<eof
</body>
</html>
eof;
?>
[Click to add or edit comments])
Please prepend comments below including a date