-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRadioCase.php
29 lines (29 loc) · 1.15 KB
/
RadioCase.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
<!-- ส่วน Logic สำหรับการ Filter -->
<?php
// เช็คว่าถ้ามีการกด submit
if(isset($_POST['submit'])){
// เช็คว่าตัวแปรมีค่าหรือไม่ ถ้ามีค่อยทำในเงื่อนไข เพื่อป้องกันกรณี user ไม่ใส่ค่าแต่กด submit มาเลย
if(isset($_POST['ans'])){
$ans = $_POST['ans'];
switch($ans){
case 'CYear':
header('location: 50cityNearBangkok.php');
break;
case '50city':
header('location: 50cityNearBangkok.php');
break;
case 'neightborTH':
header('location: cityBorderThailand.php');
break;
case '4pMBR':
header('location: NoInformation.php');
break;
case 'highC':
header('location: CountyHighestCity2011.php');
break;
case '':
header('location: index.php');
}
}
}
?>