-
Notifications
You must be signed in to change notification settings - Fork 2
/
screenshots.php
54 lines (47 loc) · 992 Bytes
/
screenshots.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
$tableRow=1;
echo '<table id="thumbnail"><tr><td>';
echo '<img src="'.$app['appScreenshot1'].'"></td>';
$tableRow++;//2
if($app['appScreenshot2']!="")
{
echo '<td><img src="'.$app['appScreenshot2'].'"></td>';
$tableRow++;//3
}
if($app['appScreenshot3']!="")
{
echo '<td><img src="'.$app['appScreenshot3'].'"></td>';
if($tableRow%2!=0)
{
echo '</tr><tr>';
}
$tableRow++;
}
if($app['appScreenshot4']!="")
{
echo '<td><img src="'.$app['appScreenshot4'].'"></td>';
if($tableRow%2!=0)
{
echo '</tr><tr>';
}
$tableRow++;
}
if($app['appScreenshot5']!="")
{
echo '<td><img src="'.$app['appScreenshot5'].'"></td>';
if($tableRow%2!=0)
{
echo '</tr><tr>';
}
$tableRow++;
}
if($tableRow%2==0)
{
echo '</tr>';
}
echo '</table>';
if($app['appVideoLink'] !="")
{
echo "<div id='pro_vedio'><iframe src='{$app['appVideoLink']}'></iframe></div>";
}
?>