34 lines
593 B
PHP
34 lines
593 B
PHP
<?php
|
|
|
|
ini_set('display_errors', 1);
|
|
ini_set('display_startup_errors', 1);
|
|
error_reporting(E_ALL);
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script type="text/javascript" src="updatethumbnail.js"></script>
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
|
|
<script type="text/javascript">
|
|
$( document ).ready(function(){
|
|
$("#page").load('page.php');
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div id="message" style="display:none;"></div>
|
|
|
|
<div id="page">
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|
|
</body>
|
|
</html>
|