示例#1
0
				margin: 5px;
				border: 1px solid;
			}
		</style>
	</head>
	<body>
		<a href="index.php">Back to front page</a> - <a href="view.php?id=<?php 
print $_GET["id"];
?>
&debug">Debug</a><hr/>
		<h1>Viewing document</h1>
		<table>
			<tr>
				<th>Scanned:</th>
				<td><?php 
printf($objDb->TranslateDate($aRes["added"]));
?>
</td>
			</tr>
			<tr>
				<th>Dated:</th>
				<td>
					<?php 
printf($objDb->TranslateDate($aRes["dated"], false));
?>
					<?php 
if ($aRes["dated"] == 0) {
    printf(' [<a href="view.php?id=%d&autodate">deduce</a>]', $_GET["id"]);
}
?>
					<?php 
示例#2
0
				display: inline;
			}
		</style>
	</head>
	<body>
		<a href="index.php">Back to front page</a><hr/>
		<h1>Delete document</h1>
		<img src="thumb.php?id=<?php 
print $_GET["id"];
?>
&width=300&page=1" title="Page 1" align="left"/>
		<table>
			<tr>
				<th>Scanned:</th>
				<td><?php 
printf($objDb->TranslateDate($aRes["added"]));
?>
</td>
			</tr>
			<tr>
				<th>Category:</th>
				<td><?php 
print $aRes["name"];
?>
</td>
			</tr>
			<tr>
				<th>Pages:</th>
				<td><?php 
print $aRes["pages"];
?>