Commit 1ea85c59 authored by Mahmoud Zalt's avatar Mahmoud Zalt

delete old testing index.php file

parent 369e7a0c
<?php
echo 'Let\'s Start.. ';
try{
$pdo = new \PDO(
'mysql:host=localdock;dbname=laravel', // you need to create the database manually when you boot the mysql docker container
'root',
'pass'
);
echo 'I am connected to the DB. ';
}catch(Exception $e){
echo $e;
}
echo 'Everything is cool.';
phpinfo();
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment