Orgapedia - Animal Database

Error: Failed to connect to database.

"; } else { // Query to get animals $result = pg_query($dbconn, "SELECT name, species, family FROM animals"); if (!$result) { echo "

Error: Query failed.

"; } else { echo ''; echo ''; echo ''; while ($row = pg_fetch_assoc($result)) { echo ''; echo ''; echo ''; echo ''; echo ''; } echo '
NameSpeciesFamily
' . htmlspecialchars($row['name']) . '' . htmlspecialchars($row['species']) . '' . htmlspecialchars($row['family']) . '
'; } // Close connection (optional) pg_close($dbconn); } ?>