Отчет специализированной некоммерческой организации, осуществляющей деятельность, направленную на обеспечение проведения капитального ремонта общего имущества в многоквартирных домах (Приказ Минстроя России от 30.12.2015 г. № 965/пр)
{source}
<script>
jQuery(document).ready(function(){
jQuery(‘#select1’).change(function(){
var select1 = jQuery(‘#select1 option:selected’).val();
jQuery.ajax({
type: “POST”,
url: “/modules/mod_report_dom/street.php”,
data: “select1=”+select1,
cache: false,
success: function(html)
{
jQuery(‘#select2’).html(html);
}
});
//alert(select1);
});
jQuery(‘#select2’).change(function(){
var select2 = jQuery(‘#select2 option:selected’).val();
var select1 = jQuery(‘#select1 option:selected’).val();
jQuery.ajax({
type: “POST”,
url: “/modules/mod_report_dom/street.php”,
data: “select2=”+select2+”:”+select1,
cache: false,
success: function(html)
{
jQuery(‘#select3’).html(html);
}
});
//alert(select1);
});
jQuery(‘#select3’).change(function(){
var select3 = jQuery(‘#select3 option:selected’).val();
var select2 = jQuery(‘#select2 option:selected’).val();
var select1 = jQuery(‘#select1 option:selected’).val();
jQuery.ajax({
type: “POST”,
url: “/modules/mod_report_dom/street.php”,
data: “select3=”+select3+”:”+select2+”:”+select1,
cache: false,
success: function(html)
{
jQuery(‘#select4’).html(html);
}
});
//alert(select1);
});
});
</script>
<?php
include ‘modules/mod_report_dom/conn.php’;
/*$link = mysql_connect(‘localhost’, ‘root’, ‘jomlaBD’) or die(‘Не удалось соединиться: ‘ . mysql_error());
mysql_set_charset(‘utf8’,$link);
mysql_select_db(‘336J7’) or die(‘Не удалось выбрать базу данных’);*/
// Выполняем SQL-запрос
$query = ‘SELECT DISTINCT(gorod) FROM pp983_report_dom ORDER BY gorod’;
$result = mysql_query($query) or die(‘Запрос не удался: ‘ . mysql_error());
echo “<form action=” method=’POST’>”;
echo “<table><tr><td>Выберите город<br>”;
echo “<select id=’select1′ name=’select1′>”;
echo “<option selected=’selected’>Выберите город</option>”;
while($object = mysql_fetch_object($result)){
echo “<option value = ‘$object->gorod’ > $object->gorod </option>”;
}
echo “</select></td></tr>”;
echo “<tr><td>Выберите улицу</td></tr>”;
echo “<tr><td>”;
echo “<select id=’select2′ name=’select2′><option selected=’selected’>Выберите улицу</option></select>”;
echo “</td></tr>”;
echo “<tr><td>Выберите номер дома</td></tr>”;
echo “<tr><td>”;
echo “<select id=’select3′ name=’select3′><option selected=’selected’>Выберите номер дома</option></select>”;
echo “</td></tr>”;
echo “<tr><td>”;
echo “<div id=’select4′ name=’select4′></div>”;
echo “</td></tr></table></form>”;
mysql_free_result($result);
mysql_close($link);
?>
{/source}