-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbody.php
More file actions
49 lines (34 loc) · 1.66 KB
/
body.php
File metadata and controls
49 lines (34 loc) · 1.66 KB
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
<?php
echo ('<div class="body">');
$query = mysql_query("SELECT * FROM auto LIMIT 7");
$row = mysql_fetch_array($query);
do
{
echo "
<div class='car1'>
<div class='car1_1'>".$row['marka']." ". $row['model']."
<div class='car1_2' style='background-image: url(".$row['img'].");' ></div></div>
<div class='car1_3'>
<div>Тип кузова <i>".$row['bodywork']."</i><br/><hr class='hr1'/></div>
<div>Длина <i>".$row['length']."мм</i><hr class='hr1'/></div>
<div>Ширина <i>".$row['width']."мм</i><hr class='hr1'/></div>
<div>Высота <i>".$row['height']."</i><hr class='hr1'/></div>
<div>Объем двигателя <i>".$row['engine']."<sup>3</sup></i><hr class='hr1'/></div>
<div>Мощность <i>".$row['power']." л.с.</i><hr class='hr1'/></div>
<div>Распол. цилиндров <i>".$row['Pcylinders']."</i><hr class='hr1'/></div>
</div>
<div class='car1_4'>
<div>Количество цилиндров <i>".$row['Ncylinders']."</i><br/><hr class='hr1'/></div>
<div>Топливо <i>".$row['fuel']."</i><hr class='hr1'/></div>
<div>Максимальная скорость <i>".$row['speed']." км/час</i><hr class='hr1'/></div>
<div>Время разгона (0-100 км/час) <i>".$row['acceleration']." с</i><hr class='hr1'/></div>
<div>Расход топлива на шоссе <i>".$row['highway']." л/100 км</i><hr class='hr1'/></div>
<div>Расход топлива в городе <i>".$row['city']." л/100 км</i><hr class='hr1'/></div>
</div>
</div>";
}
while ($row = mysql_fetch_array($query)) ;
echo "<div class='otstup'></div>";
echo ('</div>
');
?>