Webbserverprogrammering 1

Show sourcecode

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

webbserverprogrammering/projekt/GYA-2026/php/

config.php
createTables.php
dbconnection.php
deleteActions.php
deletePlayers.php
index.php
main.php
map_maker.html
seePlayers.php

config.php

13 lines ASCII Windows (CRLF)
<?php
  
// Local
  
$db_name_local "mindatabas";
  
$db_hostname_local 'localhost';
  
$db_user_local 'root';
  
$db_password_local '';

  
// Production
  
$db_name_prod "mindatabas";
  
$db_hostname_prod 'kitfos23';
  
$db_user_prod 'kitfos23';
  
$db_password_prod 'vhzaBhjJ';
?>