/* Подключение файла "логики" приложения */ require_once $_SERVER['DOCUMENT_ROOT'] . '/model/model.php'; /* Подключение файла главного меню */ require_once $_SERVER['DOCUMENT_ROOT'] . '/menu/mainmenu.php'; /* Определение переменных Smarty для хранения переменных сессии */ if (isset($_SESSION['isLogin']) && isset($_SESSION['username'])) { $smarty->assign('login', $_SESSION['isLogin']); $smarty->assign('username', $_SESSION['username']); } /* Определение переменной Smarty для хранения массива с меню */ $smarty->assign('mainmenu', $mainmenu); /* * Вызов функции, которая возвращает отзывы * Определение переменной Smarty для массива с отзывами */ $allFeeds = getFeedbacks($link); $smarty->assign('feed', $allFeeds); /* Вызов функции парсинга погоды. Возвращает ассоциативный массив */ $result = deadWeather(); /* Определение переменных Smarty для вывода сведений о погоде: дней недели (с датой) */ $smarty->assign('today_date', $result['today_date']); $smarty->assign('tomorrow_date', $result['tomorrow_date']); $smarty->assign('after_tomorrow_date', $result['after_tomorrow_date']); /* и массивов со сведениями о погоде по дням */ $smarty->assign('arr_today', $result['today_part']); $smarty->assign('arr_tomorrow', $result['tomorrow_part']); $smarty->assign('arr_after_tomorrow', $result['after_tomorrow_part']); /* Год для футтера*/ $smarty->assign('year', date('Y')); /* Заголовки страниц */ $smarty->assign('title', getTitle());
<p class="desc">Please leave your feedback about the website, the bugs you found, the things you like or things you want to see improved or the content you want me to add in the future.</p> <div id="basic" class="myform"> <form id="form1" name="form1" method="post" action="" onsubmit="return validateFeedback();"> <h2>Feedback form</h2> <p>Please post your feedbacks about the website</p> <label>Name <span class="small" id="commentName">(Required)</span> </label> <input class="txt" type="text" name="txtName" id="name" /> <label>Email <span class="small" id="commentEmail">(Required)</span> </label> <input class="txt" type="text" name="txtEmail" id="email" /> <label>Webpage <span class="small">(Optional)</span> </label> <input class="txt" type="text" name="txtWebPage" id="webpage" /> <label>Comments <span class="small" id="commentText">(Required)</span> </label> <textarea name="txtComments" cols="1" rows="1" id="comment"></textarea> <input class="btn" type="submit" name="btnPostFeedback" value="Post Feedback" /> </form> </div> <div id="comments"> <?php echo getFeedbacks(); ?> </div> <div class="postfoot"> <p><a href="http://delicious.com/post" onclick="window.open('http://delicious.com/post?v=5&noui&jump=close&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title), 'delicious','toolbar=no,width=550,height=550'); return false;"> Bookmark this on Delicious</a></p> </div>