17 lines
382 B
PHP
17 lines
382 B
PHP
<h1>Git</h1>
|
|
<h2>Med Te3</h2>
|
|
<h3>Feature</h3>
|
|
|
|
<p><strong>Denna sida (index.php) skall bytas ut.</strong></p>
|
|
|
|
<?php
|
|
// Testar att mariaDB fungerar
|
|
$myPDO = new PDO('mysql:host=mariadb;port=3306;dbname=mysql', 'root', '12345');
|
|
$result = $myPDO->query("SELECT * FROM db");
|
|
foreach ($result as $row) {
|
|
echo $row['Db'] . '<hr>';
|
|
}
|
|
|
|
phpinfo();
|
|
?>
|