| Current Path : C:/xampp/htdocs/cid/fts/ |
| Current File : C:/xampp/htdocs/cid/fts/connection.php |
<?php
$conn = mysqli_connect("localhost","root","","dts");
if($conn)
{
echo "Connection Succesfull";
}
else
{
echo "Connection was not established";
}
?>