-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
309 lines (292 loc) · 14.9 KB
/
index.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
<?php
$host="localhost";
$username="theabzo4_root";
$password="!Abhi1234";
$db_name="theabzo4_tae";
$tbl_name="counter";
mysql_connect("$host", "$username", "$password")or die("cannot connect to server ");
mysql_select_db("$db_name")or die("cannot select DB");
$sql="SELECT * FROM $tbl_name";
$result=mysql_query($sql);
$rows=mysql_fetch_array($result);
$counter=$rows['counter'];
if(empty($counter)){
$counter=1;
$sql1="INSERT INTO $tbl_name(counter) VALUES('$counter')";
$result1=mysql_query($sql1);
}
$addcounter=$counter+1;
$sql2="update $tbl_name set counter='$addcounter'";
$result2=mysql_query($sql2);
mysql_close();
?>
<html>
<head><title>Search College Worldwide As Per IELTS/TOEFL</title><link rel="shortcut icon" href="87.png"/>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script type="text/javascript">
if (screen.width <= 699) {
window.location.href = "http://www.theabroadeducation.com/wp";
}
</script>
<link rel="stylesheet" type="text/css" href="style1.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$( "#datepicker" ).datepicker();
} );
$( function() {
$( ".datepicker1" ).datepicker();
} );
function toggleTextbox(opt)
{
if (opt == 'Return')
{
document.getElementById('txtText').disabled = false;
document.getElementById('txtText1').disabled = false;
}
else
{
document.getElementById('txtText').disabled = true;
document.getElementById('txtText1').disabled = true;
}
}
</script>
<script type="text/javascript">
$(document).ready(function() {
$('.masterTooltip').hover(function(){
var title = $(this).attr('title');
$(this).data('tipText', title).removeAttr('title');
$('<p class="tooltip"></p>')
.text(title)
.appendTo('body')
.fadeIn('slow');
}, function() {
$(this).attr('title', $(this).data('tipText'));
$('.tooltip').remove();
}).mousemove(function(e) {
var mousex = e.pageX + 20; //Get X coordinates
var mousey = e.pageY + 10; //Get Y coordinates
$('.tooltip')
.css({ top: mousey, left: mousex })
});
});
function validate_selected()
{
var a=["UK","USA","Canada","Germany","France","Singapore","Ireland","Australia"];
var ch=document.forms["myform"]["tickettype"].value;
var x = document.forms["myform"]["toefl"].value;
var y = document.forms["myform"]["ielts"].value;
var c=document.forms["myform"]["country"].value;
switch(ch)
{
case "Yes":
if ((x == ""||x>120||x<69)&&(y == ""||y>9||y<5))
{
alert("Enter a valid score of TOEFL/IELTS");
return false;
}
else if(c == "")
{
alert("Please choose a Valid Country from the list given");
return false;
}
if (['UK', 'USA','uk', 'usa','Germany', 'germany','Canada','canada','Australia', 'australia','France', 'france','Singapore', 'singapore','Ireland', 'ireland','UK'].indexOf(c)>-1) {
return true;
}
else
{
alert("Please choose a Valid Country from the list given");
return false;
}
break;
case "No":
if(c == "")
{
alert("Please choose a Valid Country from the list given");
return false;
}
else if (['UK', 'USA','uk', 'usa','Germany', 'germany','Canada','canada','Australia', 'australia','France', 'france','Singapore', 'singapore','Ireland', 'ireland','UK'].indexOf(c)>-1) {
return true;
}
else
{
alert("Please choose a Valid Country from the list given");
return false;
}
break;
}
}
</script>
<style>
a:hover
{
text-decoration: none;
}
</style>
</head>
<body bgcolor="#77A5E0">
<table border=0 height="100%" width="100%" cellspacing="0" cellpading="0">
<tr>
<td bgcolor="#8B0000" height="10%" width="100%"><a href="index.php"
<span style="color:orange;font-size:40px;font-family:Clip;text-decoration:none">
The Abroad Education</span></a>
<img src="87.png" width="5%" width="6%">
<span style="display:inline-block;width:250;color:white">
</span>
<a href="scholarships.php" <span style="color:orange;font-family:Candara;text-decoration:none">
SCHOLARSHIPS</span></a>    
<a href="countries.php"<span style="color:orange;font-family:Candara;text-decoration:none">
STUDY DESTINATIONS</span></a>    
<a href="feedback.php"
<span style="color:orange;font-family:Candara;text-decoration:none">
FEEDBACK</span></a>
<a href="contact.php"<span style="color:orange;font-family:Candara;text-decoration:none">
CONTACT US </span></a>
</td></tr>
<tr>
<td background="120.jpg">
<div id="parent8">
<div id="child8">
<span>Find Your Dream College Here</span>
</div>
</div>
<div id="parent">
<div id="child">
<form action="searchvalidation.php" method="POST" name="myform" onsubmit="return validate_selected()">
<input type="radio" name="tickettype" value="Yes" onclick="toggleTextbox('Return')">English Lan-Certification Required
<input type="radio" name="tickettype" value="No" checked onclick="toggleTextbox('One Way')">English Lan-Certification Not Required
</div></div>
<div id="parent2">
<div id="child2">
<input type="text" name="country" placeholder="Select Country" class="masterTooltip" title="USA,UK,Australia,Canada,Germany,Ireland,Singapore,France" id='country'>
<input type="text" placeholder="Enter TOEFL Score(Overall)" id="txtText1" name="toefl" class="masterTooltip" title="Enter your overall TOEFL score between 69 to 120 " disabled="disabled">
<span style="color:white;font-family:Candara;text-decoration:none">
OR</span>
<input type="text" placeholder="Enter IELTS Band(Overall)" class="masterTooltip" title="Enter your overall IELTS band between 5.0 to 9.0 " name="ielts" id="txtText" disabled="disabled">
<input type="submit" value="Search">
</div></div></form></td></tr></table>
<div id="parent9">
<div id="child9"><b> Dream         Explore         Learn </b>
</div>
</div>
<div id="parent11">
<div id="child11">
<img src="141.png" width="25%"></img>    
</div>
</div>
<div id="parent10">
<div id="child10">
<img src="151.png" width="13%"></img>      
<img src="149.png" width="15%"></img>
</div>
</div>
<div id="parent13">
<div id="child13">
<img src="152.png" width="75%"></img>
</div>
</div>
<div id="parent12">
<div id="child12">
<span style="color:white;font-family:Candara;font-size:50px">Benefits of Studying Abroad</span><br>
<span style="color:white;font-family:Candara;font-size:20px">You may have heard about studying overseas but are new to actually surfing this site. StudyAbroad.com has a fantastic way for you to search for Study Abroad Programs by level, type and country. It's easy and visual so you won't get lost.</span><br><br>
<span style="color:white;font-family:Candara;font-size:32px">Globalize Yourself</span><br><br>
<span style="color:white;font-family:Candara;font-size:20px">While studying abroad, you will be given the opportunity to further your academic study in a foreign country. There are a variety of programs to choose from: some immerse you directly in a foreign culture and language, while others ease you into a culture shock with support services designed specifically for study abroad students. With so many unique programs, it may be easy to find a good fit for your personality and goals. Take this opportunity to expose yourself to the world.</span><br><br>
<span style="color:white;font-family:Candara;font-size:32px">Broaden Your Experience</span><br><br>
<span style="color:white;font-family:Candara;font-size:20px">It is easy to have a limited view of the world we live in, but international travel can relieve you of this. You will learn how your home country fits into humanity, and through the eyes of a different culture, you can more precisely reflect upon your own culture. While learning another country's traditions, you will understand the significance of keeping your own traditions alive while sharing them with others. During your time abroad, you may be presented with the opportunity to travel around your host country or neighboring countries,take advantage of this. Executing travel plans and seeing unforgettable sights may help you see the world through a new set of eyes.</span><br><br>
<span style="color:white;font-family:Candara;font-size:32px">Take the Challenge</span><br><br>
<span style="color:white;font-family:Candara;font-size:20px">Studying abroad comes with its challenges which directly relate to the benefits of studying abroad. No matter where you end up, you will more than likely be out of your comfort zone as you face obstacles like homesickness, spending and budgeting foreign currency and simply living in a new, unfamiliar place. These may seem like small feats now, but in retrospect you'll be proud of the accomplishments you have overcome. You'll most likely return home a wiser individual and ready to face any future challenges head on.</span><br><br>
<span style="color:white;font-family:Candara;font-size:32px">Make Friends From Around The World</span><br><br>
<span style="color:white;font-family:Candara;font-size:20px">It's likely that the university you choose for your international studies will have a large community of students both from the local area and all around the globe. If you take full advantage of this opportunity, you could graduate having established lasting friendships with people based in many different countries, great for future trips, and also a good basis for an international professional network. As Dalferes says, "Spending time studying abroad can provide an excellent opportunity to make new contacts and build invaluable relationships with peers from around the world."</span><br><br>
<span style="color:white;font-family:Candara;font-size:32px">Become Truly Independent</span><br><br>
<span style="color:white;font-family:Candara;font-size:20px">The experience of university is, for most new students, a steep learning curve in gaining independence. But studying abroad takes that a whole step further, challenging students to really develop as individuals. Dee Roach says, "You obviously have to cope on your own when you are studying abroad. You have to be able to look after yourself and sort out your own affairs."</span><br><br><br><br><br><br><br>
<a href="https://www.ielts.org/"><span style="color:white;font-family:Candara;font-size:20px">About IELTS</span></a><br><br>
<a href="https://www.ets.org/toefl"><span style="color:white;font-family:Candara;font-size:20px">About TOEFL</span></a><br>
</div>
</div>
<div id="parent14">
<div id="child14">
<span style="color:white;font-family:Candara;font-size:50px">Top Study Destinations</span><br><br>
   <img class="img-circle" src="136.jpg"><br><br><br>
   <img class="img-circle" src="113.jpg"><br><br><br>
   <img class="img-circle" src="126.jpg"><br><br><br>
   <img class="img-circle" src="167.jpg"><br><br><br>
   <img class="img-circle" src="168.jpg">
</div></div>
<div id="parent15">
<div id="child15">
<a href="usa.php"><span style="color:white;text-decoration:none">USA</span></a>
</div></div>
<br><br><br><br><br><br><br>
<div id="parent16">
<div id="child16">
<a href="uk.php"><span style="color:white;text-decoration:none">UK</span></a>
</div></div>
<br><br><br><br><br><br>
<div id="parent17">
<div id="child17">
<a href="france.php"><span style="color:white;text-decoration:none">France</span></a>
</div></div>
<br><br><br><br><br><br><br>
<div id="parent18">
<div id="child18">
<a href="aus.php"><span style="color:white;text-decoration:none">Australia</span></a>
</div></div>
<br><br><br><br><br><br><br>
<div id="parent19">
<div id="child19">
<a href="germany.php"><span style="color:white;text-decoration:none">Germany</span></a>
</div></div>
<div id="parent20">
<div id="child20">
<br>  <a href="about.php"<span style="font-size:17px;color:white"> About us</span></a>
            
        
        
<span style="font-size:17px;color:white"> Connect With Us</span>
        
           
    
<a href="subscribe.php"<span style="font-size:17px;color:white"> Subscribe to the Newsletter</span></a>
<br><br>  <a href="contact.php"<span style="font-size:17px;color:white"> Contact us </span></a>         
         
        
        
        
        
                  
<a href="faq.php" <span style="font-size:17px;color:white"> FAQ </span></a><br><br><br><br><br>
    
        
        
       
<span style="font-size:17px;color:white"> All Rights Reserved by TheAbroadEducation.com </span>
<br>
<span style="color:white;">
<?php
echo "This site is visited ";
echo $counter;
echo " times."
?></span>
       
       
       
       
       
       
       
    
<a href="https://www.facebook.com/abhisharma774"><span style="color:white;">Developed by Abhishek Sharma</span></a>
</div></div>
<div id="parent21">
<div id="child21">
<a href="https://www.facebook.com/theabroadeducation" target="_self"> <img src="fb.png" width="6%" /></a>
<a href="https://twitter.com/theabroadedu"><img src="twitter.png" width="4.5%" /></a>
<a href="https://www.instagram.com/theabroadeducationindia"><img src="insta.png" width="4.5%" /></a>
</div></div></body></html>