Skip to content
Permalink
2c5495a86f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
27 lines (23 sloc) 497 Bytes
<?php
$servername = "localhost";
$username = "root"
$password = "FBwRNDEg27ofVsqD4Fyl";
echo "go";
try{
$conn = new PDO("mysql:host=$servername;dbname=routedatabase", $username, $password);
echo "Connected successfully";
}
catch(PDOException $e){
echo $e->getMessage();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>RouteDatabase</title>
This is the route database class
</head>
<body>
</body>
</html>