-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetvariables.php
155 lines (146 loc) · 3.16 KB
/
setvariables.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?php
###TRY---
#All variables are set
if(isset($pais1) and
isset($ciudad1) and
isset($puerto1) and
isset($pais2) and
isset($ciudad2) and
isset($puerto2) and
isset($logistica) and
isset($proveedor) and
isset($contenedor) and
!empty($pais1) and
!empty($ciudad1) and
!empty($puerto1) and
!empty($pais2) and
!empty($ciudad2) and
!empty($puerto2) and
!empty($logistica) and
!empty($proveedor) and
!empty($contenedor))
{
echo "<p>pais1 and pais2 isset</p>";
} elseif
#All variables but contenedor are set
(isset($pais1) and
isset($ciudad1) and
isset($puerto1) and
isset($pais2) and
isset($ciudad2) and
isset($puerto2) and
isset($logistica) and
isset($proveedor) and
!empty($pais1) and
!empty($ciudad1) and
!empty($puerto1) and
!empty($pais2) and
!empty($ciudad2) and
!empty($puerto2) and
!empty($logistica) and
!empty($proveedor) and
empty($contenedor))
{
echo "<p>All variables but contenedor are set</p>";
} elseif
#All variables but proveedor and contenedor are set
(isset($pais1) and
isset($ciudad1) and
isset($puerto1) and
isset($pais2) and
isset($ciudad2) and
isset($puerto2) and
isset($logistica) and
!empty($pais1) and
!empty($ciudad1) and
!empty($puerto1) and
!empty($pais2) and
!empty($ciudad2) and
!empty($puerto2) and
!empty($logistica) and
empty($proveedor) and
empty($contenedor))
{
echo "<p>All variables but proveedor and contenedor are set</p>";
} elseif
#All variables are set but logistica proveedor and contenedor
(isset($pais1) and
isset($ciudad1) and
isset($puerto1) and
isset($pais2) and
isset($ciudad2) and
isset($puerto2) and
!empty($pais1) and
!empty($ciudad1) and
!empty($puerto1) and
!empty($pais2) and
!empty($ciudad2) and
!empty($puerto2) and
empty($logistica) and
empty($proveedor) and
empty($contenedor))
{
echo "<p>All variables are set but logistica proveedor and contenedor</p>";
} elseif
#All variables are set but logistica and proveedor
(isset($pais1) and
isset($ciudad1) and
isset($puerto1) and
isset($pais2) and
isset($ciudad2) and
isset($puerto2) and
isset($contenedor) and
!empty($pais1) and
!empty($ciudad1) and
!empty($puerto1) and
!empty($pais2) and
!empty($ciudad2) and
!empty($puerto2) and
empty($logistica) and
empty($proveedor) and
!empty($contenedor))
{
echo "<p>All variables are set but logistica and proveedor</p>";
} elseif
#All variables are set but proveedor
(isset($pais1) and
isset($ciudad1) and
isset($puerto1) and
isset($pais2) and
isset($ciudad2) and
isset($puerto2) and
isset($logistica) and
isset($contenedor) and
!empty($pais1) and
!empty($ciudad1) and
!empty($puerto1) and
!empty($pais2) and
!empty($ciudad2) and
!empty($puerto2) and
!empty($logistica) and
empty($proveedor) and
!empty($contenedor))
{
echo "<p>All variables are set but proveedor</p>";
} elseif
##All variables are set but logistica and contenedor
(isset($pais1) and
isset($ciudad1) and
isset($puerto1) and
isset($pais2) and
isset($ciudad2) and
isset($puerto2) and
isset($proveedor) and
!empty($pais1) and
!empty($ciudad1) and
!empty($puerto1) and
!empty($pais2) and
!empty($ciudad2) and
!empty($puerto2) and
empty($logistica) and
!empty($proveedor) and
empty($contenedor))
{
echo "<p>All variables are set but logistica and contenedor</p>";
}
?>