- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 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
// Выброка из базы
$db=mysql_connect(\"$host\",\"$login\",\"$pass\") or die(\"error\");
$link = mysql_select_db($base,$db);
$sql = \"SELECT * FROM studios ORDER by id\";
$result = mysql_query($sql);
if($array = mysql_fetch_array($result)) {
do {
echo \"<div class=\\\"studios\\\">\";
echo \"<h2>\".$array[\"name\"].\"</h2>\";
echo \"<strong>Услуги: </strong>\"; echo nl2br($array[\"servise\"]); echo \"<br />\";
echo \"<strong>Я выбрал: </strong>\"; echo $array[\"yavi\"]; echo \"<br />\";
echo \"<strong>Фон: </strong>\"; echo nl2br($array[\"background\"]); echo \"<br />\";
echo \"<strong>Свет: </strong>\"; echo nl2br($array[\"lights\"]); echo \"<br />\";
echo \"<strong>Адрес: </strong>\"; echo nl2br($array[\"adress\"]); echo \"<br />\";
echo \"<strong>Контакты: </strong>\"; echo nl2br($array[\"contacts\"]);
echo \"</div>\";
}
while ($array = mysql_fetch_array($result)); }
// Форма
<form action=\"<?php bloginfo(\'template_url\'); ?>/list_insert.php\" method=\"post\">
<label for=\"name\">Название:</label><br />
<p><input name=\"name\" id=\"name\" /></p>
<label for=\"yavi\">Yavi:</label><br />
<p><input type=\"checkbox\" name=\"yavi\" id=\"yavi1\" value=\"Яви 1\" />Яви1
<input type=\"checkbox\" name=\"yavi\" id=\"yavi2\" value=\"Яви 2\" />Яви2
<input type=\"checkbox\" name=\"yavi\" id=\"yavi2\" value=\"Яви 3\" />Яви3
</p>
<input tabindex=\"5\" type=\"submit\" name=\"submit\" />
</form>
guest 27.01.2017 17:08 # 0