-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorders-details.php
125 lines (106 loc) · 5.23 KB
/
orders-details.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
session_start(); ?>
<html class="no-js" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Практикант ДВФУ</title>
<link rel="stylesheet" href="css/foundation.css">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="style.css">
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<link href="css/foundation-datepicker.css" rel="stylesheet">
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="js/foundation-datepicker.js"></script>
</head>
<body>
<?php
include ("header.php"); ?>
<?php
// require_once 'orders.php';
include ("bd.php");
$group = $_GET['group'];?>
<!-- Блок со ссылками-->
<div class="grid-x">
<div class="small-0 large-1 columns"></div>
<div class="small-10 large-10 columns">
<div class="line-solid"></div>
<div class="pdng">
<div class="bold text-left">    Группа: <?php echo $group?></div>
<div class="text-right"><script type="text/javascript">document.write(new Date().getDate()+"." +new Date().getMonth()+1+"." +new Date().getFullYear())</script>
</div>
</div>
<table class="fnt">
<thead>
<tr>
<th width="200">ФИО студента</th>
<th width="200">Наименование вакансии</th>
<th width="200">Наименование предприятия</th>
<th width="200">Дата проведения</th>
</tr>
</thead>
<tbody>
<?php
// require_once 'orders.php';
include ("bd.php");
$group = $_GET['group'];
$sql = "SELECT student_data.universityGroup, vacancies.userAddId, vacancies.dateStart, vacancies.dateFinish, employers_data.name_company, employers_data.id, vacancies.id_employers,vacancies.title, student_data.surname, student_data.patronymic, student_data.id_user, student_data.name FROM student_data, vacancies, employers_data WHERE vacancies.id_employers = employers_data.id AND vacancies.userAddId = student_data.id_user AND student_data.universityGroup='".$group."'";
$result = mysql_query($sql) or die(mysql_error() ."<br/>". $sql);
while ($row = mysql_fetch_assoc($result))
{
$table .= "<tr>\n";
$table .= "<td>".$row['name']." ".$row['patronymic']." ".$row['surname']."</td>\n";
$table .= "<td>".$row['title']."</td>\n";
$table .= "<td>".$row['name_company']."</td>\n";
$table .= "<td>".$row['dateStart']." - ".$row['dateFinish']."</td>\n";
$table .= "</tr>\n";
}
$table .= "</table>\n";
// Выводим заполненую таблицу на экран
echo $table;?>
</tbody>
</table>
</div>
<div class="small-0 large-1 columns"></div>
</div>
<!-- Конец блока со ссылками -->
<!-- footer -->
<?php
include_once("footer.php");
echoFooter();
?>
<!-- Конец footer`а -->
<!-- Cкрипт, которыQ обрабатывает клик по личному кабинету -->
<!-- Сделан просто для примера -->
<script type="text/javascript">
$(document).ready(function() { // вся мaгия пoсле зaгрузки стрaницы
$('a#goTwo').click( function(event){ // лoвим клик пo ссылки с id="go"
event.preventDefault(); // выключaем стaндaртную рoль элементa
$('#overlayTwo').fadeIn(400, // снaчaлa плaвнo пoкaзывaем темную пoдлoжку
function(){ // пoсле выпoлнения предъидущей aнимaции
$('#modal_formTwo')
.css('display', 'block') // убирaем у мoдaльнoгo oкнa display: none;
.animate({opacity: 1, top: '50%'}, 200); // плaвнo прибaвляем прoзрaчнoсть oднoвременнo сo съезжaнием вниз
});
});
/* Зaкрытие мoдaльнoгo oкнa, тут делaем тo же сaмoе нo в oбрaтнoм пoрядке */
$('#modal_close, #overlayTwo').click( function(){ // лoвим клик пo крестику или пoдлoжке
$('#modal_formTwo')
.animate({opacity: 0, top: '45%'}, 200, // плaвнo меняем прoзрaчнoсть нa 0 и oднoвременнo двигaем oкнo вверх
function(){ // пoсле aнимaции
$(this).css('display', 'none'); // делaем ему display: none;
$('#overlayTwo').fadeOut(400); // скрывaем пoдлoжку
}
);
});
});
</script>
<!-- Конец скрипта -->
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/what-input.js"></script>
<script src="js/vendor/foundation.js"></script>
<script src="js/app.js"></script>
</body>
</html>