wsp_m2/www/public/index.php

14 lines
365 B
PHP
Raw Permalink Normal View History

2021-09-27 08:26:32 +00:00
<h1>Webbservern fungerar!</h1>
<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();
?>