Webbserverprogrammering 1

Show sourcecode

The following files exists in this folder. Click to view.

Webserver1/Ovningar/mySQL/

admin.php
fetch_car_things.php
fetch_kompisar.php
fetch_users.php
mysql1.php
mysql2.php
mysql3.php
mysql3_satt_att_sortera.php
mysql3car.php
mysql3garage.php
mysql3owner.php
welcome.php

welcome.php

25 lines UTF-8 Windows (CRLF)
<?php
  session_start
();
?>

<!DOCTYPE html>
<html lang="sv">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Välkomstsida</title>
</head>
<body>
  <h1>
    <?php
      
if (isset($_SESSION['username'])) {
        echo 
"Välkommen, " $_SESSION['username'];
      }
      else {
        echo 
"Välkommen";
      }
    
?>
  </h1>
  <p>Lowkey det finns inte så mycket att göra här än</p>
</body>
</html>