Subversion Repositories eFlore/Applications.cel

Rev

Rev 526 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
416 aurelien 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
	<head>
4
		<title>Images en doublon - <?=$utilisateur?></title>
5
 
6
		<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
7
		<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
8
		<style type="text/css">
9
			html, body {
10
				margin:0;
11
				padding:0;
12
				height: 100%;
13
				font-family: Arial;
14
				font-size: 12px;}
15
			#carte {
16
				width:100%;
17
				height:100%;
18
		</style>
19
	</head>
20
 
21
	<body>
22
		<h1>Images en doublon - <?=$utilisateur?></h1>
23
		<ul>
24
		<?php foreach ($doublons as $doublon) : ?>
25
			<li>
26
			<?php foreach ($doublon as $img) : ?>
27
				<?=$img['num']?><img src="<?=$img['url']?>" />
28
			<?php endforeach; ?>
29
			</li>
30
		<?php endforeach; ?>
31
		</ul>
32
	</body>
33
</html>