-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase_error.php
29 lines (27 loc) · 1001 Bytes
/
database_error.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
<!------------------------------------------------------------------
WanderList(Database error file)
Travel Website
This website shows the picturs, videos and reviews of the destination searched
Developed by: Kajol Shah, Nina Guarino, Kattie Hilliard
Last Updated: December 1st, 2018
Languages & UI: PHP, SQL, CURL, PYTHON, BOOTSTRAP, HTML, CSS, JAVASCRIPT
APIs Used: Geolocation API, Flickr API, Youtube API, Yelp Fusion API
Developed at Rowan University(2018)
-------------------------------------------------------------------->
<!-- the head section -->
<head>
<title>My Travel Destinations</title>
</head>
<!-- the body section -->
<body>
<div id="page">
<div id="main">
<h1>Database Error</h1>
<p>There was a database connection error.</p>
<p>The database must be installed.</p>
<p>MySQL must be running.</p>
<p>Error message:
<?php echo $error_message; ?></p>
</div>
</div><!-- end page -->
</body>