예제 #1
0
파일: picture.php 프로젝트: K348/tesciq
<?php

require_once "php/config.php";
require_once "php/header.php";
require_once "php/pictures.php";
$pics = new Pictures($servername, $dbusername, $dbpass, $dbname);
if (!isset($_GET['id']) || $pics->showPicture($_GET['id']) == 0) {
    header('Location: http://' . $_SERVER['SERVER_NAME']);
}
?>
<script src="javascript/index.js"></script>

	<div id="content">
		<div style="float:left; width:50%; font-size: 16px;">
			<div style="float:right">

					<a href=<?php 
echo 'images/pictures/' . $pics->showPicture($_GET['id']) . '.jpg';
?>
 id="pic" title=<?php 
echo '"' . $pics->getName() . '"';
?>
>
						<img src=<?php 
echo 'images/pictures/' . $pics->showPicture($_GET['id']) . '.jpg';
?>
 style="height:400px; margin:100px 0"/>

					</a>

			</div>